13 lines
312 B
Python
13 lines
312 B
Python
from django.apps import AppConfig
|
|
from django.db.models.signals import post_migrate
|
|
|
|
from fet2020.utils import create_perms
|
|
|
|
|
|
class RentalConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "rental"
|
|
|
|
def ready(self):
|
|
post_migrate.connect(create_perms, sender=self)
|