diff options
author | Prabhu Ramachandran | 2015-09-04 18:57:57 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2015-09-04 18:57:57 +0530 |
commit | 31f5e743031d105b0406e9587dc33bb065cd6e4d (patch) | |
tree | 653fbd703850e1e12f875bc5422ec3cb809c6e07 /testapp/exam/management/commands/add_group.py | |
parent | c9abbadbb0e6a4a60edb7ef2a14d6c74648b0677 (diff) | |
parent | 3ee050fe509b83f36188566ee57b3dd16d94a8a7 (diff) | |
download | online_test-31f5e743031d105b0406e9587dc33bb065cd6e4d.tar.gz online_test-31f5e743031d105b0406e9587dc33bb065cd6e4d.tar.bz2 online_test-31f5e743031d105b0406e9587dc33bb065cd6e4d.zip |
Merge pull request #55 from ankitjavalkar/yaksh
Change app name to yaksh
Diffstat (limited to 'testapp/exam/management/commands/add_group.py')
-rw-r--r-- | testapp/exam/management/commands/add_group.py | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/testapp/exam/management/commands/add_group.py b/testapp/exam/management/commands/add_group.py deleted file mode 100644 index 76cc655..0000000 --- a/testapp/exam/management/commands/add_group.py +++ /dev/null @@ -1,33 +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 = 'exam' - 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) - # Get list of permissions for the models - permission_list = Permission.objects.filter(content_type=content_types) - for permission in permission_list: - group.permissions.add(permission) - group.save() - - self.stdout.write('Moderator group added successfully') |