38775-vm/core/urls.py
2026-02-26 00:24:17 +00:00

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"),
]