mirror of
https://github.com/FunnyWolf/agentic-soc-platform.git
synced 2026-08-22 13:12:56 +02:00
Replace case merge with typed weak relationships and shared-artifact suggestions for analysts and agents. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
11 lines
366 B
Python
11 lines
366 B
Python
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
|
|
from .views import CaseRelationshipViewSet, CaseViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register("cases", CaseViewSet, basename="case")
|
|
router.register("case-relationships", CaseRelationshipViewSet, basename="case-relationship")
|
|
|
|
urlpatterns = [path("", include(router.urls))]
|