2020-02-07 16:02:07 +00:00
|
|
|
# -*- mode: python; coding: utf-8 -*-
|
|
|
|
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2020-02-07 19:47:49 +00:00
|
|
|
from .views import NoteViewSet, NotePolymorphicViewSet, NoteClubViewSet, NoteUserViewSet, NoteSpecialViewSet, \
|
2020-02-07 16:02:07 +00:00
|
|
|
TransactionViewSet, TransactionTemplateViewSet, MembershipTransactionViewSet
|
|
|
|
|
|
|
|
|
|
|
|
def register_note_urls(router, path):
|
|
|
|
"""
|
|
|
|
Configure router for Note REST API.
|
|
|
|
"""
|
2020-02-07 19:51:25 +00:00
|
|
|
router.register(path + '', NotePolymorphicViewSet)
|
2020-02-07 16:02:07 +00:00
|
|
|
|
2020-02-07 19:51:25 +00:00
|
|
|
router.register(path + '/transaction/transaction', TransactionViewSet)
|
|
|
|
router.register(path + '/transaction/template', TransactionTemplateViewSet)
|
|
|
|
router.register(path + '/transaction/membership', MembershipTransactionViewSet)
|