-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.yml
67 lines (66 loc) · 1.81 KB
/
settings.yml
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
featured_lists:
default: >-
[{"title":"New Pms","length":5,"filter":"new", "tag":"", "link":"/my/messages/new", "solved":""},
{"title":"Unread Pms","length":5,"filter":"unread", "tag":"", "link":"/my/messages/unread", "solved":""},
{"title":"Sent Pms","length":5,"filter":"sent", "tag":"", "link":"/my/messages/sent", "solved":""},
{"title":"Literate Computing Pms","length":5,"filter":"archive", "tag":"", "link":"/my/messages/archive", "solved":"", "group": "literate-computing"}]
{"title":"Archived Pms","length":5,"filter":"archive", "tag":"", "link":"/my/messages/archive", "solved":""}]
json_schema: '{
"type": "array",
"format": "table",
"uniqueItems": true,
"items": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "The list title"
},
"length": {
"type": "string",
"description": "Set the number of topics"
},
"filter": {
"type": "string",
"description": "Choose the type of PMs to show",
"enum": [
"latest",
"archive",
"sent",
"new",
"unread"
]
},
"tag": {
"type": "string",
"description": "Filter by tag name"
},
"link": {
"type": "string",
"description": "Where the list should link to"
},
"classname": {
"type": "string",
"description": "Set a CSS class name for custom styles"
}
"group": {
"type": "string",
"description": "Group mailboxes"
}
},
"additionalProperties": false
}
}'
show_on:
default: latest
type: enum
choices:
- everywhere
- homepage
- custom
- latest/top/new/categories
- latest
- categories
- top
plugin_outlet:
default: "above-main-container"