summaryrefslogtreecommitdiff
path: root/yaksh/management/commands/add_group.py
diff options
context:
space:
mode:
authormaheshgudi2018-03-21 19:14:09 +0530
committermaheshgudi2018-03-21 19:14:09 +0530
commit09ab00808ba9ea288047662e5c7ee2a134f0ac41 (patch)
treeb9ad94f07ae3891295656203c169cb0b03b08d96 /yaksh/management/commands/add_group.py
parentefeeaae745f32c4da34f91ca3618d7c3441a5f32 (diff)
parent4b356aa2f6097cd0f46292218f31ded18b631e53 (diff)
downloadonline_test-09ab00808ba9ea288047662e5c7ee2a134f0ac41.tar.gz
online_test-09ab00808ba9ea288047662e5c7ee2a134f0ac41.tar.bz2
online_test-09ab00808ba9ea288047662e5c7ee2a134f0ac41.zip
Merge branch 'master' of https://github.com/fossee/online_test into arrange_options
Diffstat (limited to 'yaksh/management/commands/add_group.py')
-rw-r--r--yaksh/management/commands/add_group.py32
1 files changed, 0 insertions, 32 deletions
diff --git a/yaksh/management/commands/add_group.py b/yaksh/management/commands/add_group.py
deleted file mode 100644
index 624ff3c..0000000
--- a/yaksh/management/commands/add_group.py
+++ /dev/null
@@ -1,32 +0,0 @@
-'''
- This command adds moderator group with permissions to add, change and delete
- the objects in the exam app.
- We can modify this command to add more groups by providing arguments.
- Arguments like group-name, app-name can be passed.
-'''
-
-# django imports
-from django.core.management.base import BaseCommand, CommandError
-from django.contrib.auth.models import Group, Permission
-from django.contrib.contenttypes.models import ContentType
-from django.db.utils import IntegrityError
-
-class Command(BaseCommand):
- help = 'Adds the moderator group'
-
- def handle(self, *args, **options):
- app_label = 'yaksh'
- group = Group(name='moderator')
- try:
- group.save()
- except IntegrityError:
- raise CommandError("The group already exits")
- else:
- # Get the models for the given app
- content_types = ContentType.objects.filter(app_label=app_label)
- # Get list of permissions for the models
- permission_list = Permission.objects.filter(content_type__in=content_types)
- group.permissions.add(*permission_list)
- group.save()
-
- self.stdout.write('Moderator group added successfully')