FEAT - TASKER CODEX: manage agent project grants

This commit is contained in:
DCCONSTRUCTIONS
2026-05-16 01:40:45 +03:00
parent 83ea515962
commit 3b96a2613b
29 changed files with 455 additions and 64 deletions
@@ -7,6 +7,7 @@ from django.urls import path
from plane.app.views import (
CodexAgentDetailEndpoint,
CodexAgentGrantListEndpoint,
CodexAgentGrantReplaceEndpoint,
CodexAgentListEndpoint,
CodexAgentRevokeEndpoint,
CodexAgentSetupEndpoint,
@@ -36,6 +37,11 @@ urlpatterns = [
CodexAgentGrantListEndpoint.as_view(),
name="codex-agent-api-agent-grants",
),
path(
"workspaces/<str:slug>/codex-agent-api/agents/<uuid:agent_id>/grants/replace/",
CodexAgentGrantReplaceEndpoint.as_view(),
name="codex-agent-api-agent-grants-replace",
),
path(
"workspaces/<str:slug>/codex-agent-api/agents/<uuid:agent_id>/tokens/",
CodexAgentTokenListEndpoint.as_view(),