# Panel (timer)
Measure time spent on a certain task
# Screenshots
# Config
timer:
config:
# Optional | Type: bool | Default: true
# Whether resolver can create timers
add: true
# Optional | Type: bool | Default: false
# Whether resolver can add actions manually
strict: false
# Optional | Type: bool | Default: false
# Whether resolver can only start timer when none of its timers are running in any process with unique: true
unique: false
# Optional | Type: bool | Default: false
# Whether resolver can edit all actions from all steps
manager: false
# Optional | Type: array | Default: []
# Timers which will be created on step start
timers: {output(["First timer", "Second timer"])}
# UI
ui:
# Optional | Type: string | Default: null
# Panel title
title: "Panel title"
# Optional | Type: string | Default: null
# Panel description
description: "Panel description"
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34