Skip to content

Commit

Permalink
Merge pull request #518 from maykinmedia/feature/499-add-log-when-def…
Browse files Browse the repository at this point in the history
…inite

[#499] Add log when making list ready to review
  • Loading branch information
SilviaAmAm authored Nov 27, 2024
2 parents db62e12 + c33dd1f commit 1d04890
Show file tree
Hide file tree
Showing 24 changed files with 715 additions and 166 deletions.
1 change: 1 addition & 0 deletions backend/src/openarchiefbeheer/accounts/tests/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class UserFactory(DjangoModelFactory):

class Meta:
model = User
django_get_or_create = ("username",)

class Params:
superuser = factory.Trait(
Expand Down
2 changes: 2 additions & 0 deletions backend/src/openarchiefbeheer/api/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
DestructionListViewSet,
ReviewResponseViewSet,
)
from openarchiefbeheer.logging.api.viewsets import LogsViewset
from openarchiefbeheer.selection.api.views import (
SelectionCountView,
SelectionSelectAllView,
Expand Down Expand Up @@ -71,6 +72,7 @@
basename="review-responses",
)
router.register(r"zaken", ZakenViewSet, basename="zaken")
router.register(r"logs", LogsViewset, basename="logs")

destruction_list_router = BulkNestedRouter(
router, r"destruction-lists", lookup="destruction_list"
Expand Down
Loading

0 comments on commit 1d04890

Please sign in to comment.