We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8dfa848 commit e611722Copy full SHA for e611722
src/app/utils/auth-server.ts
@@ -227,5 +227,7 @@ export async function getUserContextJwtFromCookie(): Promise<
227
}
228
229
export function isMobilityDatabaseAdmin(email: string | undefined): boolean {
230
- return email?.trim().toLocaleLowerCase().endsWith('@mobilitydata.org') === true;
+ return (
231
+ email?.trim().toLocaleLowerCase().endsWith('@mobilitydata.org') === true
232
+ );
233
0 commit comments