You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
500 B
16 lines
500 B
import pydash as _;
|
|
from django.contrib.auth.models import Group
|
|
from django.core.management import BaseCommand
|
|
|
|
_.map = _.map_;
|
|
_.filter = _.filter_
|
|
|
|
|
|
class Command(BaseCommand):
|
|
def handle(self, *args, **options):
|
|
print('---------------------------------------')
|
|
print('Generating permission groups...')
|
|
print('---------------------------------------')
|
|
|
|
Group.objects.create(name='Исполнители')
|
|
Group.objects.create(name='Заказчики')
|
|
|