mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-11-26 19:27:41 +00:00
1d81213773
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
12 lines
275 B
Python
12 lines
275 B
Python
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
from .views import ChangelogViewSet
|
|
|
|
|
|
def register_logs_urls(router, path):
|
|
"""
|
|
Configure router for Activity REST API.
|
|
"""
|
|
router.register(path, ChangelogViewSet)
|