conventionschedule-android/webstorage/webproj/bff/urls.py

9 lines
278 B
Python
Raw Normal View History

2018-10-11 04:27:39 +00:00
from django.urls import path
from django.urls import re_path
from . import views
urlpatterns = [
path('', views.HomeView.as_view(), name='index'),
2018-10-14 04:21:18 +00:00
path('api/conventions/<str:identifier>/<str:mode>.json', views.ConventionsJsonView.as_view(), name='conventions_json'),
2018-10-11 04:27:39 +00:00
]