Skip to content

Commit

Permalink
feat: removing healthcheck view
Browse files Browse the repository at this point in the history
  • Loading branch information
ericosta-dev committed Aug 15, 2024
1 parent b00824b commit 9f5fc20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
10 changes: 0 additions & 10 deletions connect/internals/views.py

This file was deleted.

4 changes: 2 additions & 2 deletions connect/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
from django.conf.urls import url
from django.contrib import admin
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
from django.http import HttpResponse
from django.urls import path, include
from drf_yasg2 import openapi
from drf_yasg2.views import get_schema_view
from rest_framework import permissions

from connect.api.v1 import urls as rookly_api_v1_urls
from connect.api.grpc.project.handlers import grpc_handlers as grpc_project_handlers
from connect.internals.views import HealthCheckView
from connect.api.grpc.organization.handlers import (
grpc_handlers as grpc_organization_handlers,
)
Expand All @@ -45,7 +45,7 @@
)

urlpatterns = [
path("", HealthCheckView.as_view()),
path("", lambda _: HttpResponse()),
path("docs/", schema_view.with_ui("redoc")),
path("admin/", admin.site.urls),
path("v1/", include(rookly_api_v1_urls)),
Expand Down

0 comments on commit 9f5fc20

Please sign in to comment.