Add logout + Viewset name problem from migration

This commit is contained in:
jbdoderlein 2024-08-10 17:30:16 +00:00
parent 68d7a1577d
commit 9f1564edf3
3 changed files with 8 additions and 8 deletions

View file

@ -13,7 +13,7 @@ def register_note_urls(router, path):
router.register(path + '/note', NotePolymorphicViewSet)
router.register(path + '/alias', AliasViewSet)
router.register(path + '/trust', TrustViewSet)
router.register(path + '/consumer', ConsumerViewSet)
router.register(path + '/consumer', ConsumerViewSet,"consumer")
router.register(path + '/transaction/category', TemplateCategoryViewSet)
router.register(path + '/transaction/transaction', TransactionViewSet)