Skip to content

Commit

Permalink
Update DOJ allowlist (#303)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielnaab authored Sep 5, 2024
1 parent f0cc74f commit 13b5d2f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion apps/server-doj/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ export const createCustomServer = async (db: DatabaseContext): Promise<any> => {
// DOJ test users
'deserene.h.worsley@usdoj.gov',
'jordan.pendergrass@usdoj.gov',
].includes(email);
'kira.gillespie@usdoj.gov',
'kameron.c.thomas@usdoj.gov',
].includes(email.toLowerCase());
},
});
};
2 changes: 1 addition & 1 deletion apps/server-kansas/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const createCustomServer = async (db: DatabaseContext): Promise<any> => {
'ethan.gardner@gsa.gov',
'natasha.pierre-louis@gsa.gov',
'emily.lordahl@gsa.gov',
].includes(email);
].includes(email.toLowerCase());
},
});
};
1 change: 1 addition & 0 deletions packages/server/src/env.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/// <reference path="../.astro/types.d.ts" />
/// <reference types="astro/client" />

// Define properties on the `Locals` interface so we can pass application
Expand Down

0 comments on commit 13b5d2f

Please sign in to comment.