Skip to content

Commit 0b5d0d8

Browse files
authored
Add new "AC breakouts" event type (#311)
1 parent 1e944cb commit 0b5d0d8

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Thank you for proposing a session!
2+
3+
You may update the session description as needed and at any time before the meeting, but please keep in mind that tooling relies on issue formatting: [follow the instructions](https://github.com/w3c/tpac-breakouts/wiki/Good-Practices-for-Session-Chairs#how-to-propose-a-session) and leave all headings and other formatting intact in particular.
4+
5+
Bots and W3C AC breakouts organizers may update the description at any time, to fix formatting issues or add links and other relevant information. Please do not revert these changes. Feel free to use comments to raise questions.
6+

tools/appscript/lib/project.mjs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,10 @@ export function getProject(spreadsheet) {
133133
projectType = 'breakouts';
134134
fullType = 'tpac-breakouts';
135135
}
136+
else if (eventType === 'AC breakouts') {
137+
projectType = 'breakouts';
138+
fullType = 'ac-breakouts';
139+
}
136140
else {
137141
projectType = 'breakouts';
138142
fullType = 'breakouts-day';
@@ -627,6 +631,9 @@ export function refreshProject(spreadsheet, project, { what }) {
627631
else if (value === 'tpac-breakouts') {
628632
actualValue = 'TPAC breakouts';
629633
}
634+
else if (value === 'ac-breakouts') {
635+
actualValue = 'AC breakouts';
636+
}
630637
else {
631638
actualValue = 'Breakouts day';
632639
}

0 commit comments

Comments
 (0)