chore: state delete validations endpoint (#880)
This commit is contained in:
parent
73a8bbb31f
commit
5b6caadd6f
3 changed files with 43 additions and 4 deletions
|
|
@ -79,6 +79,7 @@ from plane.api.views import (
|
|||
## End Issues
|
||||
# States
|
||||
StateViewSet,
|
||||
StateDeleteIssueCheckEndpoint,
|
||||
## End States
|
||||
# Estimates
|
||||
EstimateViewSet,
|
||||
|
|
@ -509,6 +510,11 @@ urlpatterns = [
|
|||
),
|
||||
name="project-state",
|
||||
),
|
||||
path(
|
||||
"workspaces/<str:slug>/projects/<uuid:project_id>/states/<uuid:pk>/",
|
||||
StateDeleteIssueCheckEndpoint.as_view(),
|
||||
name="state-delete-check",
|
||||
),
|
||||
# End States ##
|
||||
# States
|
||||
path(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue