mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 07:53:19 +01:00
add command to create UserSettings for user who do not have one yet
This commit is contained in:
parent
eca88be838
commit
590b5a20d9
27
helpdesk/management/commands/create_usersettings.py
Normal file
27
helpdesk/management/commands/create_usersettings.py
Normal file
@ -0,0 +1,27 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"Management command to add create UserSettings"
|
||||
|
||||
from django.utils.translation import ugettext as _
|
||||
from django.core.management.base import BaseCommand
|
||||
from django.contrib.auth.models import User
|
||||
|
||||
from helpdesk.models import UserSettings
|
||||
from helpdesk.settings import DEFAULT_USER_SETTINGS
|
||||
|
||||
class Command(BaseCommand):
|
||||
"create_usersettings command"
|
||||
|
||||
help = _('Check for user without django-helpdesk UserSettings '
|
||||
'and create if missing')
|
||||
|
||||
def handle(self, *args, **options):
|
||||
"handle command line"
|
||||
for u in User.objects.all():
|
||||
try:
|
||||
s = UserSettings.objects.get(user=u)
|
||||
except UserSettings.DoesNotExist:
|
||||
s = UserSettings(user=u, settings=DEFAULT_USER_SETTINGS)
|
||||
s.save()
|
||||
|
||||
# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
|
Loading…
Reference in New Issue
Block a user