17 lines
443 B
Python
17 lines
443 B
Python
from django.urls import path
|
|
|
|
from plane.api.views import IntakeIssueAPIEndpoint
|
|
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"workspaces/<str:slug>/projects/<uuid:project_id>/intake-issues/",
|
|
IntakeIssueAPIEndpoint.as_view(),
|
|
name="intake-issue",
|
|
),
|
|
path(
|
|
"workspaces/<str:slug>/projects/<uuid:project_id>/intake-issues/<uuid:issue_id>/",
|
|
IntakeIssueAPIEndpoint.as_view(),
|
|
name="intake-issue",
|
|
),
|
|
]
|