diff --git a/ihatemoney/web.py b/ihatemoney/web.py index 2b365c1f..37a37c3d 100644 --- a/ihatemoney/web.py +++ b/ihatemoney/web.py @@ -151,6 +151,9 @@ def pull_project(endpoint, values): # redirect to authentication page raise Redirect303(url_for(".authenticate", project_id=project_id)) +@main.route("/health", methods=["GET"]) +def health(): + return "OK" @main.route("/admin", methods=["GET", "POST"]) def admin():