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

Add API filters for registration

This commit is contained in:
2021-03-29 16:24:58 +02:00
parent 1df1766753
commit 4f9dfadb71
6 changed files with 80 additions and 1 deletions

View File

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