* chore: paginated the issues in space app * chore: storing query using filters * chore: added filters for priority * chore: issue view model save function * chore: votes and reactions added in issues endpoint * chore: added filters in the public endpoint * chore: issue detail endpoint * chore: added labels, modules and assignees * refactor existing project publish in space app * fix clear all filters in space App * chore: removed the extra serialier * remove optional chaining and fallback to an empty array --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
56 lines
1.4 KiB
Python
56 lines
1.4 KiB
Python
from django.urls import path
|
|
|
|
|
|
from plane.space.views import (
|
|
ProjectDeployBoardPublicSettingsEndpoint,
|
|
ProjectIssuesPublicEndpoint,
|
|
WorkspaceProjectAnchorEndpoint,
|
|
ProjectCyclesEndpoint,
|
|
ProjectModulesEndpoint,
|
|
ProjectStatesEndpoint,
|
|
ProjectLabelsEndpoint,
|
|
ProjectMembersEndpoint,
|
|
)
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"anchor/<str:anchor>/settings/",
|
|
ProjectDeployBoardPublicSettingsEndpoint.as_view(),
|
|
name="project-deploy-board-settings",
|
|
),
|
|
path(
|
|
"anchor/<str:anchor>/issues/",
|
|
ProjectIssuesPublicEndpoint.as_view(),
|
|
name="project-deploy-board",
|
|
),
|
|
path(
|
|
"workspaces/<str:slug>/projects/<uuid:project_id>/anchor/",
|
|
WorkspaceProjectAnchorEndpoint.as_view(),
|
|
name="project-deploy-board",
|
|
),
|
|
path(
|
|
"anchor/<str:anchor>/cycles/",
|
|
ProjectCyclesEndpoint.as_view(),
|
|
name="project-cycles",
|
|
),
|
|
path(
|
|
"anchor/<str:anchor>/modules/",
|
|
ProjectModulesEndpoint.as_view(),
|
|
name="project-modules",
|
|
),
|
|
path(
|
|
"anchor/<str:anchor>/states/",
|
|
ProjectStatesEndpoint.as_view(),
|
|
name="project-states",
|
|
),
|
|
path(
|
|
"anchor/<str:anchor>/labels/",
|
|
ProjectLabelsEndpoint.as_view(),
|
|
name="project-labels",
|
|
),
|
|
path(
|
|
"anchor/<str:anchor>/members/",
|
|
ProjectMembersEndpoint.as_view(),
|
|
name="project-members",
|
|
),
|
|
]
|