# Copyright (c) 2023-present Plane Software, Inc. and contributors # SPDX-License-Identifier: AGPL-3.0-only # See the LICENSE file for details. from django.urls import path from plane.space.views import ( IntakeIssuePublicViewSet, WorkspaceProjectDeployBoardEndpoint, ) urlpatterns = [ path( "anchor//intakes//intake-issues/", IntakeIssuePublicViewSet.as_view({"get": "list", "post": "create"}), name="intake-issue", ), path( "anchor//intakes//inbox-issues/", IntakeIssuePublicViewSet.as_view({"get": "list", "post": "create"}), name="inbox-issue", ), path( "anchor//intakes//intake-issues//", IntakeIssuePublicViewSet.as_view({"get": "retrieve", "patch": "partial_update", "delete": "destroy"}), name="intake-issue", ), path( "workspaces//project-boards/", WorkspaceProjectDeployBoardEndpoint.as_view(), name="workspace-project-boards", ), ]