Skip to content

Commit

Permalink
feat: add display name to import (#359)
Browse files Browse the repository at this point in the history
  • Loading branch information
stolpeo authored Dec 18, 2024
1 parent 75ef046 commit 619ad31
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions adminsec/management/commands/import.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ def handle(self, *args, **options):
first_name=user_data.first_name.strip(),
last_name=user_data.last_name.strip(),
name=user_data.full_name.strip(),
display_name=user_data.display_name.strip(),
email=user_data.email,
is_staff=False,
is_superuser=False,
Expand Down

0 comments on commit 619ad31

Please sign in to comment.