6 lines
209 B
Python
6 lines
209 B
Python
from django.contrib.auth.models import Group, Permission
|
|
from django.contrib.contenttypes.models import ContentType
|
|
from rest_framework import serializers
|
|
from .models import Department, Menu, MenuMeta, Role
|
|
|