ai-tube / src /app /certification.ts
jbilcke-hf's picture
jbilcke-hf HF staff
separate user account classes
80ea539
raw history blame
No virus
395 Bytes
// for the moment only Hugging Face employees can be certified,
// but it might be given to a select few high-profile partners
// normal users don't need to be certified to enjoy the platform
export const certifiedUsers = new Set([
"jbilcke-hf",
"merve",
"xenova"
])
export function isCertifiedUser(username: string): boolean {
return certifiedUsers.has(username.trim().toLowerCase())
}