1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2024-12-26 15:42:20 +00:00
plateforme-corres2math/apps/logs/api/urls.py
2020-09-21 17:34:27 +02:00

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)