diff options
Diffstat (limited to 'Biz/PodcastItLater/UI.py')
| -rw-r--r-- | Biz/PodcastItLater/UI.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Biz/PodcastItLater/UI.py b/Biz/PodcastItLater/UI.py index 009fdbe..72a0bf1 100644 --- a/Biz/PodcastItLater/UI.py +++ b/Biz/PodcastItLater/UI.py @@ -131,7 +131,7 @@ def is_admin(user: dict[str, typing.Any] | None) -> bool: """Check if user is an admin based on email whitelist.""" if not user: return False - admin_emails = ["ben@bensima.com", "demo@example.com"] + admin_emails = ["ben@bensima.com", "demo@example.com", "admin@example.com"] return user.get("email", "").lower() in [ email.lower() for email in admin_emails ] |
