* chore: new description binary endpoints * chore: conflict free issue description * chore: fix submitting status * chore: update yjs utils * chore: handle component re-mounting * chore: update buffer response type * chore: add try catch for issue description update * chore: update buffer response type * chore: description binary in retrieve * chore: update issue description hook * chore: decode description binary * chore: migrations fixes and cleanup * chore: migration fixes * fix: inbox issue description * chore: move update operations to the issue store * fix: merge conflicts * chore: reverted the commit * chore: removed the unwanted imports * chore: remove unnecessary props * chore: remove unused services * chore: update live server error handling --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
47 lines
1.1 KiB
Python
47 lines
1.1 KiB
Python
from django.urls import path
|
|
|
|
|
|
from plane.space.views import (
|
|
IntakeIssuePublicViewSet,
|
|
WorkspaceProjectDeployBoardEndpoint,
|
|
)
|
|
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"anchor/<str:anchor>/intakes/<uuid:intake_id>/intake-issues/",
|
|
IntakeIssuePublicViewSet.as_view(
|
|
{
|
|
"get": "list",
|
|
"post": "create",
|
|
}
|
|
),
|
|
name="intake-issue",
|
|
),
|
|
path(
|
|
"anchor/<str:anchor>/intakes/<uuid:intake_id>/inbox-issues/",
|
|
IntakeIssuePublicViewSet.as_view(
|
|
{
|
|
"get": "list",
|
|
"post": "create",
|
|
}
|
|
),
|
|
name="inbox-issue",
|
|
),
|
|
path(
|
|
"anchor/<str:anchor>/intakes/<uuid:intake_id>/intake-issues/<uuid:pk>/",
|
|
IntakeIssuePublicViewSet.as_view(
|
|
{
|
|
"get": "retrieve",
|
|
"patch": "partial_update",
|
|
"delete": "destroy",
|
|
}
|
|
),
|
|
name="intake-issue",
|
|
),
|
|
path(
|
|
"workspaces/<str:slug>/project-boards/",
|
|
WorkspaceProjectDeployBoardEndpoint.as_view(),
|
|
name="workspace-project-boards",
|
|
),
|
|
]
|