diff --git a/src/server/auth/users.ts b/src/server/auth/users.ts index 963d82480..f2961c201 100644 --- a/src/server/auth/users.ts +++ b/src/server/auth/users.ts @@ -32,8 +32,8 @@ export async function find_or_create_user({ github_user }: Create_User) { return user; } else { const new_user = await create_user({ github_user }); - // if it's Wes or Scott. Upgrade that shit - if (['wesbos', 'stolinski', 'bl0om', 'benvinegar', 'w3cj'].includes(github_user.login)) { + // if it's syntax crew. Upgrade that shit + if (['wesbos', 'stolinski', 'bl0om', 'w3cj', 'randyrektor'].includes(github_user.login)) { add_user_to_role(new_user.id, 'admin'); } return new_user;