2023-10-18 15:30:08 +00:00

4 lines
90 B
TypeScript

export function isStaff(email: string) {
return email.endsWith('@toeverything.info');
}