oncall-engine/engine/apps/chatops_proxy/urls.py

10 lines
237 B
Python
Raw Permalink Normal View History

from common.api_helpers.optional_slash_router import optional_slash_path
from .views import ChatopsEventsView
app_name = "chatops-proxy"
urlpatterns = [
optional_slash_path("events", ChatopsEventsView.as_view(), name="events"),
]