feat(access): Switch model inheritence to CenturionMixin

ref: #805 #790
This commit is contained in:
2025-06-08 13:49:39 +09:30
parent a959e4cbb5
commit 708c2ae92c
5 changed files with 174 additions and 49 deletions

View File

@ -14,6 +14,14 @@ from rest_framework.reverse import reverse
# THis import only exists so that the migrations can be created
from access.models.entity_history import EntityHistory # pylint: disable=W0611:unused-import
from access.models import ( # pylint: disable=W0611:unused-import
contact,
company_base,
person,
role,
)
from access.models.entity import (
Entity,
)