feat: project deploy board endpoint (#1943)

This commit is contained in:
Nikhil 2023-08-23 22:13:37 +05:30 committed by GitHub
parent 529ab19747
commit 7fca01d8c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 42 additions and 0 deletions

View file

@ -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
]