Skip to content

Commit

Permalink
Calendar update: drop description for group meetings
Browse files Browse the repository at this point in the history
  • Loading branch information
tidoust committed Jun 14, 2024
1 parent 896f3d4 commit bb373cd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tools/lib/calendar.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -437,12 +437,14 @@ async function fillCalendarEntry({ page, entry, session, project, status, zoom }
if (session.description.discussion) {
await fillTextInput('input#event_chat', session.description.discussion);
}
else {
else if (session.description.shortname) {
await fillTextInput('input#event_chat',
`https://irc.w3.org/?channels=${encodeURIComponent(session.description.shortname)}`);
}
await fillTextInput('input#event_agendaUrl', getAgendaUrl(session));
await fillTextInput('textarea#event_agenda', formatAgenda(session));
if (project.metadata.type !== 'groups') {
await fillTextInput('textarea#event_agenda', formatAgenda(session));
}
}

const minutesMaterial = session.description.materials?.minutes ?? '@@';
Expand Down

0 comments on commit bb373cd

Please sign in to comment.