-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.json
More file actions
49 lines (49 loc) · 1.02 KB
/
Copy pathmenu.json
File metadata and controls
49 lines (49 loc) · 1.02 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"id": "0",
"name": "custom-menu-cli",
"type": "navigation",
"description": "JSON-based terminal menu",
"options": [
{
"id": "1",
"name": "Projeto A",
"type": "navigation",
"options": [
{
"id": "1.1",
"name": "Down Service",
"type": "action",
"command": "echo 'Down A'",
"confirm": true
},
{
"id": "1.2",
"name": "Up Service",
"type": "action",
"command": "echo 'Up A'"
},
{
"id": "1.3",
"name": "Restart Project A (from inside)",
"type": "custom-action",
"idList": ["1.1", "1.2"],
"confirm": true
}
]
},
{
"id": "2",
"name": "Restart All",
"type": "custom-action",
"idList": ["1.1", "1.2"],
"confirm": true
},
{
"id": "3",
"name": "Restart Project A (Nested)",
"type": "custom-action",
"idList": ["1.3"],
"confirm": true
}
]
}