File tree Expand file tree Collapse file tree 5 files changed +34
-7
lines changed Expand file tree Collapse file tree 5 files changed +34
-7
lines changed Original file line number Diff line number Diff line change
1
+ # TODO (Nicola): Re-enable travis when we have tests to run
1
2
language : node_js
2
3
node_js :
3
4
- ' 10.15.3'
5
+ # script:
6
+ # the `audit-level` is at `moderate` to avoid https://www.npmjs.com/advisories/836, which has no resolution at time of writing
7
+ # consider swapping from `moderate` to `low` whenever this is possible and / reasonable (ex: when issue in the link above is fixed)
4
8
5
- script :
6
- # the `audit-level` is at `moderate` to avoid https://www.npmjs.com/advisories/836, which has no resolution at time of writing
7
- # consider swapping from `moderate` to `low` whenever this is possible and / reasonable (ex: when issue in the link above is fixed)
8
- - npm audit --audit-level=moderate
9
+ # - npm audit --audit-level=moderate
Original file line number Diff line number Diff line change
1
+ {
2
+ "city" : " Seattle"
3
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " Lynn Cyrin" ,
3
+ "headshot" : " /images/lynn-cyrin.jpg" ,
4
+ "pronouns" : " they/them" ,
5
+ "roles" : [" Chapter Lead" ]
6
+ }
Original file line number Diff line number Diff line change @@ -13,6 +13,16 @@ publish_mode: editorial_workflow
13
13
show_preview_links : false
14
14
15
15
collections :
16
+ - name : ' chapters'
17
+ label : ' Chapters'
18
+ folder : ' content/chapters'
19
+ delete : false
20
+ fields :
21
+ - label : ' City'
22
+ name : ' city'
23
+ widget : ' string'
24
+ required : true
25
+
16
26
- name : ' pages'
17
27
label : ' Pages'
18
28
description : ' Edit the copy of standalone pages on our site.'
@@ -209,18 +219,25 @@ collections:
209
219
name : ' pronouns'
210
220
widget : ' string'
211
221
required : false
212
- - label : ' Role '
213
- name : ' role '
222
+ - label : ' Roles '
223
+ name : ' roles '
214
224
widget : ' select'
215
225
multiple : true
216
226
options :
217
227
[
218
228
' Board Member' ,
219
- ' Chapter Organizer' ,
220
229
' Conference Organizer' ,
221
230
' Website Contributor' ,
231
+ ' Chapter Lead' ,
222
232
]
223
233
required : true
234
+ - label : ' Chapter'
235
+ name : ' chapter'
236
+ widget : ' relation'
237
+ collection : ' chapters'
238
+ required : false
239
+ searchFields : ['city']
240
+ valueField : ' city'
224
241
- label : ' Social Links'
225
242
name : ' links'
226
243
widget : ' list'
You can’t perform that action at this time.
0 commit comments