Skip to content

Commit

Permalink
Added roleid to iuser def (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
malinowskikam authored Dec 4, 2023
1 parent 8e5c89b commit 665333b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion msystems/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ def _create_user(self, username: str, user_data: dict) -> User:
audit_user_id=0,
is_associated=False,
private_key=token_hex(128),
password="locked" # this is password hash, it means no password will match
password="locked", # this is password hash, it means no password will match
role_id=0
)
i_user.save()

Expand Down

0 comments on commit 665333b

Please sign in to comment.