| 123456789101112131415161718192021222324252627 |
- from typing import Annotated, List, TYPE_CHECKING
- import strawberry
- import strawberry_django
- from django.contrib.contenttypes.models import ContentType
- from core.models import ObjectChange
- if TYPE_CHECKING:
- from netbox.core.graphql.types import ObjectChangeType
- __all__ = (
- 'ChangelogMixin',
- )
- @strawberry.type
- class ChangelogMixin:
- @strawberry_django.field
- def changelog(self, info) -> List[Annotated["ObjectChangeType", strawberry.lazy('.types')]]: # noqa: F821
- content_type = ContentType.objects.get_for_model(self)
- object_changes = ObjectChange.objects.filter(
- changed_object_type=content_type,
- changed_object_id=self.pk
- )
- return object_changes.restrict(info.context.request.user, 'view')
|