diff --git a/artifacts/api-server/src/lib/executive-meeting-scheduler.ts b/artifacts/api-server/src/lib/executive-meeting-scheduler.ts index b8241e31..8a45d09c 100644 --- a/artifacts/api-server/src/lib/executive-meeting-scheduler.ts +++ b/artifacts/api-server/src/lib/executive-meeting-scheduler.ts @@ -10,7 +10,11 @@ import { getUserIdsForRoleNames } from "./executive-meeting-notify"; const TICK_MS = 60_000; const LEAD_MINUTES = 5; -const EM_NOTIFY_ROLES = ["admin", "executive_office_manager"] as const; +const EM_NOTIFY_ROLES = [ + "admin", + "executive_ceo", + "executive_office_manager", +] as const; function pad2(n: number): string { return String(n).padStart(2, "0"); diff --git a/artifacts/api-server/src/routes/executive-meetings.ts b/artifacts/api-server/src/routes/executive-meetings.ts index 86ec5238..9cfc8e7f 100644 --- a/artifacts/api-server/src/routes/executive-meetings.ts +++ b/artifacts/api-server/src/routes/executive-meetings.ts @@ -117,12 +117,14 @@ const FONT_SIZE_MAX = 22; const MUTATE_ROLES = [ "admin", + "executive_ceo", "executive_office_manager", "executive_coord_lead", ] as const; const EM_ADMIN_ROLES = ["admin", "executive_office_manager"] as const; const ADMIN_AUDIT_ROLES = [ "admin", + "executive_ceo", "executive_office_manager", "executive_coord_lead", ] as const;