fix: include urls for project views
This commit is contained in:
parent
c99eb494c8
commit
7613cc52a6
2 changed files with 7 additions and 0 deletions
|
|
@ -54,6 +54,7 @@ from plane.api.views import (
|
|||
ProjectJoinEndpoint,
|
||||
BulkDeleteIssuesEndpoint,
|
||||
BulkAssignIssuesToCycleEndpoint,
|
||||
ProjectUserViewsEndpoint,
|
||||
)
|
||||
|
||||
from plane.api.views.project import AddTeamToProjectEndpoint
|
||||
|
|
@ -312,6 +313,11 @@ urlpatterns = [
|
|||
),
|
||||
name="project",
|
||||
),
|
||||
path(
|
||||
"workspaces/<str:slug>/projects/<uuid:project_id>/project-views/",
|
||||
ProjectUserViewsEndpoint.as_view(),
|
||||
name="project-view",
|
||||
),
|
||||
# States
|
||||
path(
|
||||
"workspaces/<str:slug>/projects/<uuid:project_id>/states/",
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ from .project import (
|
|||
ProjectIdentifierEndpoint,
|
||||
AddMemberToProjectEndpoint,
|
||||
ProjectJoinEndpoint,
|
||||
ProjectUserViewsEndpoint,
|
||||
)
|
||||
from .people import (
|
||||
PeopleEndpoint,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue