-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings_ui.json
More file actions
96 lines (96 loc) · 1.86 KB
/
Copy pathsettings_ui.json
File metadata and controls
96 lines (96 loc) · 1.86 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"root": {
"replacement_target": "replacement_target",
"text": {
"text": "Linux Settings UI"
}
},
"onload_actions_list": {
"actions": [
{
"action_id": "get_all_settings"
}
]
},
"subscription_info": {
"subscriptions": [
{
"index": 1,
"actions_list": {
"actions": [
{
"action_id": "handle_settings_change"
}
]
}
}
],
"subscription_index_action": {
"actions": [
{
"jq_action": {
"transform_expression": "1"
},
"conditional": {
"jq_conditional": [".[\"$result\"].type == \"settings\""]
}
}
]
},
"preprocess": {
"actions": [
{
"parseAction": {
"string_to_json": true
}
}
]
}
},
"configured_actions": {
"get_all_settings": {
"actions": [
{
"apply_template_to_context_action": {
"template": "{ 'action': 'get_all_settings' }",
"target_id": "JsonStr"
}
},
{
"parse_action": {
"context_id": "JsonStr",
"target_id": "Json",
"string_to_json": true
}
},
{
"serialize_action": {
"context_id": "Json",
"target_id": "JsonSerialized",
"json": true
}
},
{
"server_action": {
"channel_index": 1,
"context_id": "JsonSerialized"
}
}
]
},
"handle_settings_change": {
"actions": [
{
"store_to_global_context_action": {
"target_id": "latest_settings"
}
},
{
"debug": {
"context_id": "."
}
}
]
}
}
}