diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-07-13 13:43:08 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-07-13 13:48:41 +0200 |
commit | 6741b110fbd3815f306ae4a1befaf14233ca9827 (patch) | |
tree | 332b53ac8c689f0d23872d4218e86c076bada06d /ishtar_common/models.py | |
parent | 15bc2c460ac0cb2647e429e0dc78139fa43a526d (diff) | |
download | Ishtar-6741b110fbd3815f306ae4a1befaf14233ca9827.tar.bz2 Ishtar-6741b110fbd3815f306ae4a1befaf14233ca9827.zip |
✨ default username naming style is firstname.name
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index fd3a49789..9adf148b6 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -1479,7 +1479,7 @@ class IshtarSiteProfile(models.Model, Cached): account_naming_style = models.CharField( _("Naming style for accounts"), max_length=2, - default="NF", + default="FN", choices=ACCOUNT_NAMING_STYLE, ) default_center = models.PointField( |