Parcourir la source

@catch_errors for api routes.

pull/24/head
Ben Kurtovic il y a 10 ans
Parent
révision
69819ed3f8
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  1. +2
    -0
      app.fcgi

+ 2
- 0
app.fcgi Voir le fichier

@@ -88,10 +88,12 @@ def settings():
return render_template("settings.mako", **kwargs)

@app.route("/api")
@catch_errors
def api():
return render_template("api.mako", help=True)

@app.route("/api.json")
@catch_errors
def api_json():
if not request.args:
return render_template("api.mako", help=True)


Chargement…
Annuler
Enregistrer