Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pages/api/discord.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ export default async function handler(req: NextApiRequest, res: NextApiResponse)
'Strategy Guild': process.env.SNET_DISCORD_WEBHOOK_URL,
'LatAm Guild': process.env.SNET_DISCORD_WEBHOOK_URL,
'WG Sync Call': process.env.SNET_DISCORD_WEBHOOK_URL,
'AI Sandbox': process.env.SNET_DISCORD_WEBHOOK_URL
'AI Sandbox': process.env.SNET_DISCORD_WEBHOOK_URL,
'GitHub PBL WG': process.env.SNET_DISCORD_WEBHOOK_URL,
};


Expand Down
3 changes: 2 additions & 1 deletion pages/submit-meeting-summary/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,12 @@ const SubmitMeetingSummary: NextPage = () => {
"LatAm Guild": ["narrative", "decisionItems", "actionItems"],
"WG Sync Call": ["meetingTopics", "discussion", "decisionItems", "actionItems", "issues"],
"AI Sandbox": ["townHallUpdates", "discussionPoints", "decisionItems", "actionItems", "learningPoints", "issues"],
"GitHub PBL WG": ["discussionPoints", "decisionItems", "actionItems"]
};
// When you add a new Workgroup you need to update this ordermapping and the Discord API with the new workgroup
// Also check generateMarkdown and SummaryAgendaItems for potential updates
// If you add a new AgendaItem type, you need to update the following components: Item.tsx, SummaryTemplate.tsx and AgendaItem.tsx and
// the database template. You also need to update the generateMarkdown.js and getDefaultAgendaItem.js utils functions
// the database template. You also need to update the generateMarkdown.js and getDefaultAgendaItem.js util functions

useEffect(() => {
async function fetchInitialData(workgroupId: string) {
Expand Down