forked from github/plane
14 lines
260 B
Python
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",
|
|
),
|
|
]
|