mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
7 lines
240 B
TypeScript
7 lines
240 B
TypeScript
import { UserBasicData } from "./networking/queries/useGetViewerQuery"
|
|
|
|
const VIP_USERS = ['jacksonh', 'satindar', 'hongbo']
|
|
|
|
export const isVipUser = (user: UserBasicData): boolean => {
|
|
return VIP_USERS.includes(user.profile.username)
|
|
}
|