/note/user, /note/club, /note/special => /note

This commit is contained in:
Yohann D'ANELLO 2020-02-07 20:51:25 +01:00
parent f52a89637c
commit d22350faf8
4 changed files with 14 additions and 17 deletions

View File

@ -9,6 +9,6 @@ def register_activity_urls(router, path):
"""
Configure router for Activity REST API.
"""
router.register(path + r'activity', ActivityViewSet)
router.register(path + r'type', ActivityTypeViewSet)
router.register(path + r'guest', GuestViewSet)
router.register(path + '/activity', ActivityViewSet)
router.register(path + '/type', ActivityTypeViewSet)
router.register(path + '/guest', GuestViewSet)

View File

@ -9,7 +9,7 @@ def register_members_urls(router, path):
"""
Configure router for Member REST API.
"""
router.register(path + r'profile', ProfileViewSet)
router.register(path + r'club', ClubViewSet)
router.register(path + r'role', RoleViewSet)
router.register(path + r'membership', MembershipViewSet)
router.register(path + '/profile', ProfileViewSet)
router.register(path + '/club', ClubViewSet)
router.register(path + '/role', RoleViewSet)
router.register(path + '/membership', MembershipViewSet)

View File

@ -10,11 +10,8 @@ def register_note_urls(router, path):
"""
Configure router for Note REST API.
"""
router.register(path + r'note', NotePolymorphicViewSet)
router.register(path + r'club', NoteClubViewSet)
router.register(path + r'user', NoteUserViewSet)
router.register(path + r'special', NoteSpecialViewSet)
router.register(path + '', NotePolymorphicViewSet)
router.register(path + r'transaction/transaction', TransactionViewSet)
router.register(path + r'transaction/template', TransactionTemplateViewSet)
router.register(path + r'transaction/membership', MembershipTransactionViewSet)
router.register(path + '/transaction/transaction', TransactionViewSet)
router.register(path + '/transaction/template', TransactionTemplateViewSet)
router.register(path + '/transaction/membership', MembershipTransactionViewSet)

View File

@ -32,13 +32,13 @@ router = routers.DefaultRouter()
router.register(r'users', UserViewSet)
# Routers for members app
register_members_urls(router, r'members/')
register_members_urls(router, r'members')
# Routers for activity app
register_activity_urls(router, r'activity/')
register_activity_urls(router, r'activity')
# Routers for note app
register_note_urls(router, r'note/')
register_note_urls(router, r'note')
# Wire up our API using automatic URL routing.
# Additionally, we include login URLs for the browsable API.