Skip to content
Snippets Groups Projects
Commit 5b4d761b authored by Brian Moe's avatar Brian Moe
Browse files

Allow trailing / in API Root URL

parent 82532dc0
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,8 @@ from gracedb.api import Files, FileMeta
from gracedb.api import EventNeighbors, EventLabel
urlpatterns = patterns('gracedb.api',
url (r'^$', GracedbRoot.as_view(), name="api-root"),
url (r'^/?$', GracedbRoot.as_view(), name="api-root"),
# Event Resources
# events/[{graceid}[/{version}]]
......
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