mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-07-18 05:40:21 +02:00
Move apps in main directory
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
api
locale/fr/LC_MESSAGES
logs
participation
__init__.pyadmin.pytests.pyurls.pyviews.py
api
apps.pyforms.pymanagement
__init__.py
commands
migrations
models.pysearch_indexes.pysignals.pytables.pytemplates
participation
chat.htmlcreate_team.htmljoin_team.html
mails
request_validation.htmlrequest_validation.txtteam_not_validated.htmlteam_not_validated.txtteam_validated.htmlteam_validated.txt
note_form.htmlparticipation_detail.htmlpassage_detail.htmlpassage_form.htmlpool_detail.htmlpool_form.htmlteam_detail.htmlteam_leave.htmlteam_list.htmltournament_detail.htmltournament_form.htmltournament_list.htmlupdate_team.htmlupload_motivation_letter.htmlupload_notes.htmlupload_solution.htmlupload_synthesis.htmlsearch
indexes
registration
__init__.pyadmin.py
api
apps.pyauth.pyfixtures
forms.pymigrations
0001_initial.py0002_auto_20230110_2031.py0003_alter_participantregistration_zip_code.py0004_volunteer_admin.py0005_studentregistration_vaccine_sheet.py__init__.py
models.pysearch_indexes.pysignals.pytables.pytemplates
registration
add_organizer.htmlemail_validation_complete.htmlemail_validation_email_sent.html
mails
password_change_done.htmlpassword_change_form.htmlpassword_reset_complete.htmlpassword_reset_confirm.htmlpassword_reset_done.htmlpassword_reset_form.htmlpayment_form.htmlsignup.htmltex
Autorisation_droit_image_majeur.texAutorisation_droit_image_mineur.texAutorisation_parentale.texInstructions.tex
update_user.htmlupload_health_sheet.htmlupload_parental_authorization.htmlupload_photo_authorization.htmlupload_vaccine_sheet.htmluser_detail.htmluser_list.htmlsearch
templatetags
tests.pyurls.pyviews.pytfjm
tox.ini
19
participation/api/urls.py
Normal file
19
participation/api/urls.py
Normal file
@ -0,0 +1,19 @@
|
||||
# Copyright (C) 2020 by Animath
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
from .views import NoteViewSet, ParticipationViewSet, PassageViewSet, PoolViewSet, \
|
||||
SolutionViewSet, SynthesisViewSet, TeamViewSet, TournamentViewSet
|
||||
|
||||
|
||||
def register_participation_urls(router, path):
|
||||
"""
|
||||
Configure router for participation REST API.
|
||||
"""
|
||||
router.register(path + "/note", NoteViewSet)
|
||||
router.register(path + "/participation", ParticipationViewSet)
|
||||
router.register(path + "/passage", PassageViewSet)
|
||||
router.register(path + "/pool", PoolViewSet)
|
||||
router.register(path + "/solution", SolutionViewSet)
|
||||
router.register(path + "/synthesis", SynthesisViewSet)
|
||||
router.register(path + "/team", TeamViewSet)
|
||||
router.register(path + "/tournament", TournamentViewSet)
|
Reference in New Issue
Block a user