forked from discourse/discourse-central-theme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.yml
268 lines (264 loc) · 6.09 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
topic_list_show_usernames:
default: false
type: bool
required: true
blocks:
default:
[
{ "order": 1, "blocks": [{ "name": "profile", "size": "4w" }] },
{
"order": 3,
"blocks":
[
{
"name": "top_topics",
"size": "4w",
"count": 10,
"period": "quarterly",
},
],
},
{
"order": 4,
"blocks":
[{ "name": "top_contributors", "size": "4w", "period": "quarterly" }],
},
]
type: objects
schema:
name: row
properties:
order:
default: 0
type: integer
blocks:
type: objects
schema:
name: block
properties:
name:
type: enum
choices:
- top_contributors
- top_topics
- time
- profile
- online
- cta
required: true
size:
type: enum
required: true
choices:
- 2x2
- 4x4
- 4x2
- 4w
- 2x1
- 1x1
title:
default: ""
type: string
validations:
min: 0
max: 26
description:
default: ""
type: string
validations:
min: 0
max: 140
cta:
default: ""
type: string
validations:
min: 0
max: 26
url:
default: ""
type: string
validations:
url: true
count:
default: 5
type: integer
validations:
min: 1
max: 12
period:
default: weekly
type: enum
choices:
- all
- yearly
- quarterly
- monthly
- weekly
- daily
allOf:
- if:
properties:
block:
const: top_contributors
then:
properties:
size:
choices:
- 2x2
- 4x4
- 4w
default: 4w
period:
default: weekly
- if:
properties:
block:
const: top_topics
then:
properties:
size:
choices:
- 2x2
- 4x4
- 4w
default: 4w
period:
default: weekly
- if:
properties:
block:
const: time
then:
properties:
size:
choices:
- 2x1
- 2x2
default: 2x1
period:
type: null
- if:
properties:
block:
const: profile
then:
properties:
size:
choices:
- 2x2
- 4x4
default: 2x2
period:
type: null
- if:
properties:
block:
const: online
then:
properties:
size:
choices:
- 1x1
- 2x1
default: 1x1
period:
type: null
blocks_border_radius:
default: "xl"
type: enum
choices:
- xs
- sm
- md
- lg
- xl
- 2xl
- 3xl
- full
blocks_top:
default:
[
{
"blocks":
[
{
"ctas":
[
{
"url": "/about",
"label": "Learn more",
"style": "primary",
},
],
"name": "banner",
"size": "12w",
"title": "Welcome to the community!",
},
],
},
]
type: objects
schema:
name: row
properties:
order:
default: 0
type: integer
blocks:
type: objects
schema:
name: block
properties:
name:
type: enum
choices:
- banner
required: true
size:
type: enum
required: true
choices:
- 12w
title:
default: ""
type: string
validations:
min: 0
max: 26
description:
default: ""
type: string
validations:
min: 0
max: 140
ctas:
default: []
type: objects
schema:
name: cta
properties:
label:
default: ""
type: string
validations:
min: 0
max: 52
url:
default: ""
type: string
validations:
url: true
style:
default: primary
type: enum
required: true
choices:
- primary
- secondary
- tertiary
- uncontained
blocks_top_image:
default: ""
type: string
validations:
url: true