9 lines
348 B
Python
9 lines
348 B
Python
from django.urls import path
|
|
from .views import dashboard, mcp_endpoint, slack_webhook, request_detail
|
|
|
|
urlpatterns = [
|
|
path("", dashboard, name="home"),
|
|
path("mcp/", mcp_endpoint, name="mcp_endpoint"),
|
|
path("webhook/slack/", slack_webhook, name="slack_webhook"),
|
|
path("request/<uuid:pk>/", request_detail, name="request_detail"),
|
|
] |