plane/apiserver/plane/api/urls/gpt.py
2023-09-21 11:40:17 +05:30

14 lines
260 B
Python

from django.urls import path
from plane.api.views import GPTIntegrationEndpoint
urlpatterns = [
path(
"workspaces/<str:slug>/projects/<uuid:project_id>/ai-assistant/",
GPTIntegrationEndpoint.as_view(),
name="importer",
),
]