Skip to content

Commit

Permalink
Merge pull request #208 from open-zaak/issue/zio-put-patch
Browse files Browse the repository at this point in the history
Issue/zio put patch
  • Loading branch information
joeribekker committed Nov 8, 2019
2 parents 1f9c439 + 538343a commit 07be5b5
Show file tree
Hide file tree
Showing 6 changed files with 141 additions and 782 deletions.
20 changes: 15 additions & 5 deletions src/openzaak/components/besluiten/api/viewsets.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
from rest_framework import viewsets
from rest_framework import mixins, viewsets
from rest_framework.pagination import PageNumberPagination
from vng_api_common.audittrails.viewsets import (
AuditTrailCreateMixin,
AuditTrailDestroyMixin,
AuditTrailViewSet,
AuditTrailViewsetMixin,
)
from vng_api_common.notifications.viewsets import NotificationViewSetMixin
from vng_api_common.notifications.viewsets import (
NotificationCreateMixin,
NotificationDestroyMixin,
NotificationViewSetMixin,
)
from vng_api_common.viewsets import CheckQueryParamsMixin

from openzaak.utils.data_filtering import ListFilterByAuthorizationsMixin
Expand Down Expand Up @@ -105,11 +111,15 @@ class BesluitViewSet(


class BesluitInformatieObjectViewSet(
NotificationViewSetMixin,
AuditTrailViewsetMixin,
NotificationCreateMixin,
NotificationDestroyMixin,
AuditTrailCreateMixin,
AuditTrailDestroyMixin,
CheckQueryParamsMixin,
ListFilterByAuthorizationsMixin,
viewsets.ModelViewSet,
mixins.CreateModelMixin,
mixins.DestroyModelMixin,
viewsets.ReadOnlyModelViewSet,
):
"""
Opvragen en bewerken van BESLUIT-INFORMATIEOBJECT relaties.
Expand Down

0 comments on commit 07be5b5

Please sign in to comment.