mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-11-26 16:07:09 +00:00
1d81213773
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
12 lines
293 B
Python
12 lines
293 B
Python
# Copyright (C) 2020 by Animath
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
from .views import RegistrationViewSet
|
|
|
|
|
|
def register_registration_urls(router, path):
|
|
"""
|
|
Configure router for registration REST API.
|
|
"""
|
|
router.register(path + "/registration", RegistrationViewSet)
|