Skip to content

Commit e44aeeb

Browse files
authored
Add WG/IG facilitators role for calendar access (#42)
* 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) * Fix member ordering - sort alphabetically
1 parent 8077a0c commit e44aeeb

3 files changed

Lines changed: 25 additions & 0 deletions

File tree

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
@@ -165,6 +165,11 @@ export const MEMBERS: readonly Member[] = [
165165
github: 'eiriktsarpalis',
166166
memberOf: [ROLE_IDS.CSHARP_SDK],
167167
},
168+
{
169+
github: 'EmLauber',
170+
discord: '1408222390361657426',
171+
memberOf: [ROLE_IDS.WG_IG_FACILITATORS],
172+
},
168173
{
169174
github: 'evalstate',
170175
discord: '779268016121577492',
@@ -339,6 +344,11 @@ export const MEMBERS: readonly Member[] = [
339344
github: 'movetz',
340345
memberOf: [ROLE_IDS.SWIFT_SDK],
341346
},
347+
{
348+
github: 'nbarbettini',
349+
discord: '784552628930478090',
350+
memberOf: [ROLE_IDS.WG_IG_FACILITATORS],
351+
},
342352
{
343353
github: 'nickcoai',
344354
discord: '1153783469860732968',

0 commit comments

Comments
 (0)