Commit 9577c024 authored by Michal Čihař's avatar Michal Čihař

Skip ACL for stats until API authentication is available

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 3580ff4d
...@@ -329,7 +329,7 @@ def export_stats(request, project, subproject): ...@@ -329,7 +329,7 @@ def export_stats(request, project, subproject):
''' '''
Exports stats in JSON format. Exports stats in JSON format.
''' '''
subprj = get_subproject(request, project, subproject) subprj = get_subproject(request, project, subproject, True)
jsonp = None jsonp = None
if 'jsonp' in request.GET and request.GET['jsonp']: if 'jsonp' in request.GET and request.GET['jsonp']:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment