1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/django-fmd_ynh.git synced 2024-09-03 18:26:27 +02:00
django-fmd_ynh/conf/setup_user.py

10 lines
263 B
Python
Raw Normal View History

2022-07-11 20:34:24 +02:00
def setup_project_user(user):
"""
All users used the Django admin, so we need to set the "staff" user flag.
Called from django_yunohost_integration.sso_auth
"""
user.is_staff = True
user.is_superuser = True
2022-07-11 20:34:24 +02:00
user.save()
return user