Skip to content

Commit

Permalink
remove openapi schema
Browse files Browse the repository at this point in the history
  • Loading branch information
rm03 committed Oct 27, 2024
1 parent 938bcdf commit 49597bb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions backend/clubs/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -7566,6 +7566,12 @@ def post(self, request):


class HealthView(APIView):
"""
Health check endpoint to confirm the backend is running.
"""

schema = None

def get(self, request):
return Response({"message": "OK"}, status=status.HTTP_200_OK)

Expand Down

0 comments on commit 49597bb

Please sign in to comment.