Skip to content

Commit e59308b

Browse files
committed
Add WG/IG facilitators role for calendar access
Add a new Discord-only role for Working Group and Interest Group facilitators who need access to manage meetings on meet.modelcontextprotocol.io. Initial members: - Emily Lauber (@EmLauber) - Auth IG OAuth Mixup sub-working group - Nate Barbettini (@nbarbettini)
1 parent 050c9b0 commit e59308b

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

src/config/roleIds.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@ export const ROLE_IDS = {
6262
FINANCIAL_SERVICES_IG: 'financial-services-ig',
6363
GATEWAYS_IG: 'gateways-ig',
6464

65+
// ===================
66+
// WG/IG Facilitators (Discord only)
67+
// ===================
68+
WG_IG_FACILITATORS: 'wg-ig-facilitators',
69+
6570
// ===================
6671
// Email Groups (Google only)
6772
// ===================

src/config/roles.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,16 @@ export const ROLES: readonly Role[] = [
308308
discord: { role: 'gateways interest group (synced)' },
309309
},
310310

311+
// ===================
312+
// WG/IG Facilitators (Discord only)
313+
// ===================
314+
{
315+
id: ROLE_IDS.WG_IG_FACILITATORS,
316+
description: 'Working Group and Interest Group facilitators with calendar access',
317+
discord: { role: 'wg/ig facilitators (synced)' },
318+
// Discord only - grants meet.modelcontextprotocol.io calendar access
319+
},
320+
311321
// ===================
312322
// Email Groups (Google only)
313323
// ===================

src/config/users.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -473,4 +473,14 @@ export const MEMBERS: readonly Member[] = [
473473
474474
memberOf: [ROLE_IDS.ANTITRUST],
475475
},
476+
{
477+
github: 'EmLauber',
478+
discord: '1408222390361657426',
479+
memberOf: [ROLE_IDS.WG_IG_FACILITATORS],
480+
},
481+
{
482+
github: 'nbarbettini',
483+
discord: '784552628930478090',
484+
memberOf: [ROLE_IDS.WG_IG_FACILITATORS],
485+
},
476486
] as const;

0 commit comments

Comments
 (0)