Skip to content
Snippets Groups Projects
Commit d65aceb0 authored by Tanner Prestegard's avatar Tanner Prestegard Committed by GraceDB
Browse files

adding superevent API urls - currently nesting them within the events API;...

adding superevent API urls - currently nesting them within the events API; should eventually be moved to a separate API app
parent 11bc2fcd
No related branches found
No related tags found
1 merge request!8Superevents
# Changed for Django 1.11
from django.conf.urls import url
from django.conf.urls import url, include
from .views import *
......@@ -88,4 +87,7 @@ urlpatterns = [
# Legacy
url(r'^event/(?P<graceid>\w[\d]+)/files/(?P<filename>.+)?$',
Files.as_view(), name="file-download"),
# Superevents
url(r'^superevents/', include('superevents.api.urls')),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment