From 30c7d1370b378a15267019beb325f48d80f827d7 Mon Sep 17 00:00:00 2001 From: Minh Duong Date: Tue, 7 Jan 2025 02:15:53 -0600 Subject: [PATCH] fix: add `seminar` meeting type to CMS config.yml --- sigpwny.com/public/manage/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sigpwny.com/public/manage/config.yml b/sigpwny.com/public/manage/config.yml index f55d5f6c..ad6ec8d1 100644 --- a/sigpwny.com/public/manage/config.yml +++ b/sigpwny.com/public/manage/config.yml @@ -30,7 +30,7 @@ collections: summary: '{{time_start}} - Week {{week_number}}: {{title}}' fields: - {label: 'Title', name: 'title', hint: 'Example: "PWN II"', widget: 'string'} - - {label: 'Meeting Type', name: 'type', widget: 'select', options: ['general', 'purple', 'ctf', 'embedded']} + - {label: 'Meeting Type', name: 'type', widget: 'select', options: ['general', 'seminar', 'ctf', 'embedded', 'purple']} - {label: 'Start Time', name: 'time_start', widget: 'datetime', default: '', date_format: 'YYYY-MM-DD', time_format: 'HH:mm:ssZ', picker_utc: false, hint: 'Ensure date matches date in path. Input time is based on the timezone of YOUR COMPUTER. Display timezone is an option below.'} - {label: 'Duration', name: 'duration', widget: 'string', default: '', hint: 'Leave blank to default to 1-hour duration. Use ISO 8601 duration format - P(n)Y(n)M(n)DT(n)H(n)M(n)S. Example: "PT48H" is 48 hours.', required: false} - {label: 'Display Timezone', name: 'timezone', widget: 'string', hint: 'Leave blank for "America/Chicago." Examples: "America/Chicago" or "Etc/UTC"', required: false}