urls.py 260 B

1234567891011
  1. from django.urls import path
  2. from .views import HeartBeatCheckView
  3. urlpatterns = [
  4. path(
  5. "organizations/<slug:organization_slug>/heartbeat_check/<uuid:endpoint_id>/",
  6. HeartBeatCheckView.as_view(),
  7. name="heartbeat-check",
  8. ),
  9. ]