1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-25 06:20:36 +02:00

Add API views for participation app

This commit is contained in:
2021-03-29 15:41:20 +02:00
parent a45d57e51a
commit 9359aa7606
5 changed files with 129 additions and 0 deletions

View File

@ -16,6 +16,10 @@ if "logs" in settings.INSTALLED_APPS:
from logs.api.urls import register_logs_urls
register_logs_urls(router, "logs")
if "participation" in settings.INSTALLED_APPS:
from participation.api.urls import register_participation_urls
register_participation_urls(router, "participation")
app_name = 'api'
# Wire up our API using automatic URL routing.