1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2025-02-06 22:13:00 +00:00
2020-09-22 20:41:42 +02:00

12 lines
264 B
Python

from django.urls import path
from .views import CreateTeamView, JoinTeamView
app_name = "participation"
urlpatterns = [
path("create_team/", CreateTeamView.as_view(), name="create_team"),
path("join_team/", JoinTeamView.as_view(), name="join_team"),
]