See #432: added admin API endpoints to retrieve and delete tags

This commit is contained in:
Eliot Berriot 2019-07-24 10:24:30 +02:00
parent c885c10be1
commit 13f36beec3
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
6 changed files with 127 additions and 1 deletions

View file

@ -24,6 +24,7 @@ users_router.register(r"invitations", views.ManageInvitationViewSet, "invitation
other_router = routers.OptionalSlashRouter()
other_router.register(r"accounts", views.ManageActorViewSet, "accounts")
other_router.register(r"tags", views.ManageTagViewSet, "tags")
urlpatterns = [
url(