update healthcheck response message
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 3m3s

This commit is contained in:
i701 2025-04-12 10:05:13 +05:00
parent 4c722752a4
commit 9f3f586181
Signed by: i701
GPG Key ID: 54A0DA1E26D8E587

View File

@ -295,7 +295,7 @@ class UserDetailAPIView(StaffEditorPermissionMixin, generics.RetrieveAPIView):
@api_view(["GET"]) @api_view(["GET"])
def healthcheck(request): def healthcheck(request):
return Response({"status": "ok"}, status=status.HTTP_200_OK) return Response({"status": "Good"}, status=status.HTTP_200_OK)
@api_view(["POST"]) @api_view(["POST"])