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

Merge branch 'fractional_gps_time' into 'master'

Add ability to search for fractional GPS times

See merge request !58
parents 2187634f 7f93c9a5
No related branches found
No related tags found
1 merge request!58Add ability to search for fractional GPS times
Pipeline #514600 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