From 739edba92deddb10949cbd872bce063195c65c16 Mon Sep 17 00:00:00 2001 From: Marc 'risson' Schmitt Date: Wed, 23 Aug 2023 16:55:53 +0200 Subject: [PATCH] enterprise: default user count to 0 Signed-off-by: Marc 'risson' Schmitt --- authentik/enterprise/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/authentik/enterprise/models.py b/authentik/enterprise/models.py index e8821d147..37b95ba96 100644 --- a/authentik/enterprise/models.py +++ b/authentik/enterprise/models.py @@ -47,8 +47,8 @@ class LicenseKey: exp: int name: str - internal_users: int - external_users: int + internal_users: int = 0 + external_users: int = 0 flags: list[LicenseFlags] = field(default_factory=list) @staticmethod