from django.urls import path from .views import HeartBeatCheckView urlpatterns = [ path( "organizations//heartbeat_check//", HeartBeatCheckView.as_view(), name="heartbeat-check", ), ]