From 73fff0955bd72c222733171ae0ae187fee21c017 Mon Sep 17 00:00:00 2001 From: Robin COuret Date: Fri, 6 Mar 2026 19:38:13 +0100 Subject: [PATCH] add strict limit --- .../auth/__pycache__/security.cpython-311.pyc | Bin 3109 -> 3109 bytes server/src/app/auth/security.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/app/auth/__pycache__/security.cpython-311.pyc b/server/src/app/auth/__pycache__/security.cpython-311.pyc index 5d4a815e0be10d44b64333cfe00dcee34e16dde1..a99a626f52cd82e7990fdf953d6f3d080864d5a8 100644 GIT binary patch delta 44 zcmZ1~u~dS0IWI340}y Optional[dict]: def verify_beyond_user_limit() -> bool: users: Sequence[User] = get_users() - if (len(users) > settings.USER_LIMIT): + if (len(users) >= settings.USER_LIMIT): return True else: return False