feat: project deploy board endpoint (#1943)
This commit is contained in:
parent
529ab19747
commit
7fca01d8c9
3 changed files with 42 additions and 0 deletions
|
|
@ -173,6 +173,7 @@ from plane.api.views import (
|
|||
CommentReactionPublicViewSet,
|
||||
InboxIssuePublicViewSet,
|
||||
IssueVotePublicViewSet,
|
||||
WorkspaceProjectDeployBoardEndpoint,
|
||||
## End Public Boards
|
||||
## Exporter
|
||||
ExportIssuesEndpoint,
|
||||
|
|
@ -1617,5 +1618,10 @@ urlpatterns = [
|
|||
),
|
||||
name="issue-vote-project-board",
|
||||
),
|
||||
path(
|
||||
"public/workspaces/<str:slug>/project-boards/",
|
||||
WorkspaceProjectDeployBoardEndpoint.as_view(),
|
||||
name="workspace-project-boards",
|
||||
),
|
||||
## End Public Boards
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue