# 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 ( ProjectDeployBoardPublicSettingsEndpoint, ProjectIssuesPublicEndpoint, WorkspaceProjectAnchorEndpoint, ProjectCyclesEndpoint, ProjectModulesEndpoint, ProjectStatesEndpoint, ProjectLabelsEndpoint, ProjectMembersEndpoint, ProjectMetaDataEndpoint, ) urlpatterns = [ path( "anchor//meta/", ProjectMetaDataEndpoint.as_view(), name="project-meta", ), path( "anchor//settings/", ProjectDeployBoardPublicSettingsEndpoint.as_view(), name="project-deploy-board-settings", ), path( "anchor//issues/", ProjectIssuesPublicEndpoint.as_view(), name="project-deploy-board", ), path( "workspaces//projects//anchor/", WorkspaceProjectAnchorEndpoint.as_view(), name="project-deploy-board", ), path( "anchor//cycles/", ProjectCyclesEndpoint.as_view(), name="project-cycles", ), path( "anchor//modules/", ProjectModulesEndpoint.as_view(), name="project-modules", ), path( "anchor//states/", ProjectStatesEndpoint.as_view(), name="project-states", ), path( "anchor//labels/", ProjectLabelsEndpoint.as_view(), name="project-labels", ), path( "anchor//members/", ProjectMembersEndpoint.as_view(), name="project-members", ), ]