1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-21 18:08:21 +02:00

/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

@ -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.