From 7a3b6c72d97efc0e449e70e8afc18beff297620a Mon Sep 17 00:00:00 2001 From: CasVT Date: Mon, 16 Jan 2023 22:43:38 +0100 Subject: [PATCH] Updated invalid usernames --- backend/users.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/users.py b/backend/users.py index 7b7388f..6a0d940 100644 --- a/backend/users.py +++ b/backend/users.py @@ -8,7 +8,7 @@ from backend.reminders import Reminders from backend.security import generate_salt_hash, get_hash ONEPASS_USERNAME_CHARACTERS = 'abcedfghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_-.!@$' -ONEPASS_INVALID_USERNAMES = ['users','api'] +ONEPASS_INVALID_USERNAMES = ['reminders','api'] class User: """Represents an user account