File size: 228 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
// @flow
export const isAdmin = (id: string): boolean => {
const admins = [
'gVk5mYwccUOEKiN5vtOouqroGKo1',
'01p2A7kDCWUjGj6zQLlMQUOSQL42',
'VToKcde16dREgDkXcDl3hhcrFN33',
];
return admins.indexOf(id) > -1;
};
|