1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2025-07-04 20:24:03 +02:00

Log DB modifications

This commit is contained in:
Yohann D'ANELLO
2020-09-21 17:34:27 +02:00
parent ca4b0729e7
commit 7ae31f8a61
12 changed files with 347 additions and 0 deletions

11
apps/logs/api/urls.py Normal file
View File

@ -0,0 +1,11 @@
# 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)