add health API endpoint, #887

This commit is contained in:
Simon
2025-03-11 22:10:17 +07:00
parent e06e1be433
commit 862a854e64
4 changed files with 14 additions and 12 deletions

View File

@@ -25,4 +25,9 @@ urlpatterns = [
views.NotificationView.as_view(),
name="api-notification",
),
path(
"health/",
views.HealthCheck.as_view(),
name="api-health",
),
]