Skip to content
Snippets Groups Projects
Commit 7f93c9a5 authored by Duncan Meacher's avatar Duncan Meacher
Browse files

Add ability to search for fractional GPS times

parent 2187634f
No related branches found
No related tags found
1 merge request!58Add ability to search for fractional GPS times
Pipeline #513209 passed with warnings
......@@ -213,6 +213,9 @@ def find_url(ext, site, tag, filename):
@blueprint.route('<ext>/<site>/<tag>/<int:start>,<int:end>') # for --ping
@blueprint.route('<ext>/<site>/<tag>/<int:start>,<int:end>.json')
@blueprint.route('<ext>/<site>/<tag>/<int:start>,<int:end>/<urltype>.json')
@blueprint.route('<ext>/<site>/<tag>/<float:start>,<float:end>') # for --ping
@blueprint.route('<ext>/<site>/<tag>/<float:start>,<float:end>.json')
@blueprint.route('<ext>/<site>/<tag>/<float:start>,<float:end>/<urltype>.json')
@handle_errors_as_json
@authentication.validate
def find_urls(ext, site, tag, start, end, urltype=None):
......
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