Skip to content

Commit

Permalink
version is needed to function, so no point having it optional
Browse files Browse the repository at this point in the history
  • Loading branch information
talavis committed Apr 24, 2019
1 parent ca1b80b commit ab6950c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/route.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def __init__(self, settings):
{"path": "static/img/"}),
(r"/release/(?P<dataset>[^\/]+)/(?P<hash_value>[^\/]+)/(?P<file>[^\/]+)",handlers.TemporaryStaticNginxFileHandler,
{"path": "/release-files/"}),
(r"/release/(?P<dataset>[^\/]+)/(?:versions/(?P<ds_version>[^/]+)/)?(?P<file>[^\/]+)", handlers.AuthorizedStaticNginxFileHandler,
(r"/release/(?P<dataset>[^\/]+)/versions/(?P<ds_version>[^/]+)/(?P<file>[^\/]+)", handlers.AuthorizedStaticNginxFileHandler,
{"path": "/release-files/"}),
## Authentication
(r"/logout", auth.ElixirLogoutHandler),
Expand Down

0 comments on commit ab6950c

Please sign in to comment.