Split API in each app
This commit is contained in:
parent
987b898a33
commit
55722b801a
13 changed files with 12 additions and 17 deletions
14
apps/activity/api/urls.py
Normal file
14
apps/activity/api/urls.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# -*- mode: python; coding: utf-8 -*-
|
||||
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
from .views import ActivityTypeViewSet, ActivityViewSet, GuestViewSet
|
||||
|
||||
|
||||
def register_activity_urls(router, path):
|
||||
"""
|
||||
Configure router for Activity REST API.
|
||||
"""
|
||||
router.register(path + '/activity', ActivityViewSet)
|
||||
router.register(path + '/type', ActivityTypeViewSet)
|
||||
router.register(path + '/guest', GuestViewSet)
|
||||
Loading…
Add table
Add a link
Reference in a new issue