-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathUIConfig.json
46 lines (46 loc) · 1.09 KB
/
UIConfig.json
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
{
"page": {
"label": "Live Playlists Configuration"
},
"sections": [
{
"id": "section_random",
"element": "section",
"label": "Live playlists",
"icon": "fa-list-ol",
"onSave": {"type":"controller", "endpoint":"music_service/live_playlists", "method":"savePluginOptions"},
"saveButton": {
"label": "Save",
"data": [
"filter_path",
"random",
"latest"
]
},
"content": [
{
"id": "filter_path",
"type":"text",
"element": "input",
"doc": "Restrict selected tracks by path",
"label": "Filter path",
"value": ""
},
{
"id":"random",
"element": "switch",
"doc": "Playlists with random tracks",
"label": "Random",
"value": true
},
{
"id":"latest",
"element": "switch",
"doc": "Recently added tracks",
"label": "Recently",
"value": true
}
]
}
]
}