mirror of
https://github.com/YunoHost-Apps/scovie_ynh.git
synced 2024-09-03 20:16:29 +02:00
10 lines
258 B
Python
10 lines
258 B
Python
#!/usr/bin/env python3
|
|
|
|
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.save()
|
|
return user
|