summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrabhu Ramachandran2017-01-03 18:11:48 +0530
committerGitHub2017-01-03 18:11:48 +0530
commited79af7d019c96517ea03e13bc2809ea1e8d17c4 (patch)
treee178653b9a0dd8add31007dcf54508faf36c1395
parent7ba65ddab30af0fdce75cecb8767c9a5c45af8a1 (diff)
parent510a8d60168405111aae2fe291ba77e3d5456869 (diff)
downloadonline_test-ed79af7d019c96517ea03e13bc2809ea1e8d17c4.tar.gz
online_test-ed79af7d019c96517ea03e13bc2809ea1e8d17c4.tar.bz2
online_test-ed79af7d019c96517ea03e13bc2809ea1e8d17c4.zip
Merge pull request #171 from ankitjavalkar/fix-add-group
[Minor] Bug Fix: Add permissions for all models related to yaksh
-rw-r--r--yaksh/management/commands/add_group.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/yaksh/management/commands/add_group.py b/yaksh/management/commands/add_group.py
index 03ef103..624ff3c 100644
--- a/yaksh/management/commands/add_group.py
+++ b/yaksh/management/commands/add_group.py
@@ -15,7 +15,7 @@ class Command(BaseCommand):
help = 'Adds the moderator group'
def handle(self, *args, **options):
- app = 'yaksh'
+ app_label = 'yaksh'
group = Group(name='moderator')
try:
group.save()
@@ -23,11 +23,10 @@ class Command(BaseCommand):
raise CommandError("The group already exits")
else:
# Get the models for the given app
- content_types = ContentType.objects.filter(app_label=app)
+ content_types = ContentType.objects.filter(app_label=app_label)
# 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()
+ permission_list = Permission.objects.filter(content_type__in=content_types)
+ group.permissions.add(*permission_list)
+ group.save()
self.stdout.write('Moderator group added successfully')