(identifier: string)
| 2 | import { ALL_USERS_USER_EMAIL } from "@/types"; |
| 3 | |
| 4 | export const ensureUserFullName = (identifier: string) => { |
| 5 | const id = extractUserEmail(identifier); |
| 6 | return `${userNamePrefix}${id}`; |
| 7 | }; |
| 8 | |
| 9 | export const isUserIncludedInList = ( |
| 10 | identifier: string, |
no test coverage detected