23 lines
628 B
Python
23 lines
628 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
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))
|
||
|
|