Přebývající dump práv
This commit is contained in:
parent
edde41e1ab
commit
42d57e7b42
1 changed files with 0 additions and 20 deletions
|
@ -1,20 +0,0 @@
|
||||||
from django.core.management.base import BaseCommand
|
|
||||||
from django.contrib.sessions.models import Session
|
|
||||||
from django.contrib.auth.models import Group, Permission
|
|
||||||
import json
|
|
||||||
|
|
||||||
class Command(BaseCommand):
|
|
||||||
"""
|
|
||||||
Dump permissions for group 'org' such that them can be used on an other machine.
|
|
||||||
|
|
||||||
"""
|
|
||||||
def handle(self, *args, **options):
|
|
||||||
orgroup = Group.objects.get(name='org')
|
|
||||||
permissions = []
|
|
||||||
for p in orgroup.permissions.all():
|
|
||||||
permissions.append({
|
|
||||||
'codename': p.codename,
|
|
||||||
'ct_app_label': p.content_type.app_label,
|
|
||||||
'ct_model': p.content_type.model})
|
|
||||||
print(json.dumps(permissions))
|
|
||||||
|
|
Loading…
Reference in a new issue