FEAT - TASKER: support Codex agent labels and profiles

This commit is contained in:
DCCONSTRUCTIONS
2026-05-15 14:25:36 +03:00
parent b0a682b63b
commit 6962642614
3 changed files with 557 additions and 85 deletions
+6
View File
@@ -23,6 +23,7 @@ from plane.authentication.views.nodedc_agent_adapter import (
NodeDCAgentIssueMoveEndpoint,
NodeDCAgentIssueUpdateEndpoint,
NodeDCAgentProjectContextEndpoint,
NodeDCAgentProjectLabelsEnsureEndpoint,
NodeDCAgentProjectResolveEndpoint,
)
from plane.authentication.views.nodedc_workspace_adapter import (
@@ -94,6 +95,11 @@ urlpatterns = [
NodeDCAgentProjectContextEndpoint.as_view(),
name="nodedc-agent-project-context",
),
path(
"api/internal/nodedc/agent/projects/<uuid:project_id>/labels/ensure",
NodeDCAgentProjectLabelsEnsureEndpoint.as_view(),
name="nodedc-agent-project-labels-ensure",
),
path(
"api/internal/nodedc/agent/issues",
NodeDCAgentIssueListEndpoint.as_view(),