aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/api/healthcheck.py
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-03-29 16:11:17 +0100
committerGravatar Gareth Coles <[email protected]>2018-03-29 16:11:17 +0100
commit67618068683037b7529ee14e2a17a0ba23d75e26 (patch)
tree32e5e9ff51821334541425f44e0fef4d0734747b /pysite/views/api/healthcheck.py
parentFix OAuth unit test (diff)
Fix up route names
Diffstat (limited to 'pysite/views/api/healthcheck.py')
-rw-r--r--pysite/views/api/healthcheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pysite/views/api/healthcheck.py b/pysite/views/api/healthcheck.py
index 2ff5dfb0..d57f61fa 100644
--- a/pysite/views/api/healthcheck.py
+++ b/pysite/views/api/healthcheck.py
@@ -6,7 +6,7 @@ from pysite.base_route import APIView
class HealthCheckView(APIView):
path = "/healthcheck"
- name = "healthcheck"
+ name = "api.healthcheck"
def get(self):
return jsonify({"status": "ok"})