From 3460ec880884eb88fcbb7162d8cd081d40e1c5ac Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Wed, 13 Nov 2024 10:01:13 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F(backend)=20fix=20minor=20typ?= =?UTF-8?q?o?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit login is a noun, the verb needs a whitespace. --- src/backend/core/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/core/models.py b/src/backend/core/models.py index 29d80963..b9a9de07 100644 --- a/src/backend/core/models.py +++ b/src/backend/core/models.py @@ -141,7 +141,7 @@ class User(AbstractBaseUser, BaseModel, auth_models.PermissionsMixin): email = models.EmailField(_("identity email address"), blank=True, null=True) # Unlike the "email" field which stores the email coming from the OIDC token, this field - # stores the email used by staff users to login to the admin site + # stores the email used by staff users to log in to the admin site admin_email = models.EmailField( _("admin email address"), unique=True, blank=True, null=True )