From 71a356eb310ad36cfbdd84c170f21a3f42d55622 Mon Sep 17 00:00:00 2001 From: Winston <44872771+winston-yallow@users.noreply.github.com> Date: Fri, 3 Oct 2025 15:55:23 +0200 Subject: [PATCH] Adjust hardcoded configs --- gdshowreelvote/auth.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gdshowreelvote/auth.py b/gdshowreelvote/auth.py index 433a725..7946a8d 100644 --- a/gdshowreelvote/auth.py +++ b/gdshowreelvote/auth.py @@ -7,8 +7,8 @@ from authlib.integrations.flask_client import OAuth from gdshowreelvote.database import User, DB -ADMIN_ROLE = 'admin' -STAFF_ROLE = 'staff' +ADMIN_ROLE = 'showreel-admin' +STAFF_ROLE = 'showreel-staff' oauth = OAuth()