aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-04-02 15:32:30 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-04-02 15:32:30 -0700
commit4671f21ba969b48a0490457c296d9b585b64c055 (patch)
treed7edf1d89c785ec0eafa62c4c6f3c8fd53693634
parent6fa603c92b3329a6e49b8baa0ba68489a0ebfba8 (diff)
downloadfatcat-4671f21ba969b48a0490457c296d9b585b64c055.tar.gz
fatcat-4671f21ba969b48a0490457c296d9b585b64c055.zip
fix webface changelog; health.json is a pseudo-API
-rw-r--r--python/fatcat_web/routes.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/python/fatcat_web/routes.py b/python/fatcat_web/routes.py
index 118f402b..2bfb9025 100644
--- a/python/fatcat_web/routes.py
+++ b/python/fatcat_web/routes.py
@@ -501,7 +501,8 @@ def editor_editgroups(ident):
@app.route('/changelog', methods=['GET'])
def changelog_view():
try:
- entries = api.get_changelog(limit=request.args.get('limit'))
+ #limit = int(request.args.get('limit', 10))
+ entries = api.get_changelog()
except ApiException as ae:
abort(ae.status)
return render_template('changelog.html', entries=entries)
@@ -618,6 +619,11 @@ def release_citeproc(ident):
else:
return Response(cite, mimetype="text/plain")
+@app.route('/health.json', methods=['GET', 'OPTIONS'])
+@crossdomain(origin='*',headers=['access-control-allow-origin','Content-Type'])
+def health_json():
+ return jsonify({'ok': True})
+
### Auth ####################################################################
@@ -732,8 +738,3 @@ def fatcat_photo():
return send_from_directory(os.path.join(app.root_path, 'static'),
'fatcat.jpg',
mimetype='image/jpeg')
-
-@app.route('/health', methods=['GET', 'OPTIONS'])
-@crossdomain(origin='*',headers=['access-control-allow-origin','Content-Type'])
-def health():
- return jsonify({'ok': True})