(email: string)
| 15 | * Check if an email corresponds to a Codebuff admin |
| 16 | */ |
| 17 | export function isCodebuffAdmin(email: string): boolean { |
| 18 | return CODEBUFF_ADMIN_USER_EMAILS.includes(email) |
| 19 | } |
| 20 | |
| 21 | export interface AdminUser { |
| 22 | id: string |
no outgoing calls
no test coverage detected