* feat: added external id and external source for issue attachments * feat: added endpoint for creating users * feat: added issue attachment endpoint * fix: converted user to workspace member * chore: removed code blocking adding issues when the cycle has been completed * chore: update models * chore: added user recent visited table --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
74 lines
2.3 KiB
Python
74 lines
2.3 KiB
Python
from django.urls import path
|
|
|
|
from plane.api.views import (
|
|
IssueAPIEndpoint,
|
|
LabelAPIEndpoint,
|
|
IssueLinkAPIEndpoint,
|
|
IssueCommentAPIEndpoint,
|
|
IssueActivityAPIEndpoint,
|
|
WorkspaceIssueAPIEndpoint,
|
|
IssueAttachmentEndpoint,
|
|
)
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"workspaces/<str:slug>/issues/<str:project__identifier>-<str:issue__identifier>/",
|
|
WorkspaceIssueAPIEndpoint.as_view(),
|
|
name="issue-by-identifier",
|
|
),
|
|
path(
|
|
"workspaces/<str:slug>/projects/<uuid:project_id>/issues/",
|
|
IssueAPIEndpoint.as_view(),
|
|
name="issue",
|
|
),
|
|
path(
|
|
"workspaces/<str:slug>/projects/<uuid:project_id>/issues/<uuid:pk>/",
|
|
IssueAPIEndpoint.as_view(),
|
|
name="issue",
|
|
),
|
|
path(
|
|
"workspaces/<str:slug>/projects/<uuid:project_id>/labels/",
|
|
LabelAPIEndpoint.as_view(),
|
|
name="label",
|
|
),
|
|
path(
|
|
"workspaces/<str:slug>/projects/<uuid:project_id>/labels/<uuid:pk>/",
|
|
LabelAPIEndpoint.as_view(),
|
|
name="label",
|
|
),
|
|
path(
|
|
"workspaces/<str:slug>/projects/<uuid:project_id>/issues/<uuid:issue_id>/links/",
|
|
IssueLinkAPIEndpoint.as_view(),
|
|
name="link",
|
|
),
|
|
path(
|
|
"workspaces/<str:slug>/projects/<uuid:project_id>/issues/<uuid:issue_id>/links/<uuid:pk>/",
|
|
IssueLinkAPIEndpoint.as_view(),
|
|
name="link",
|
|
),
|
|
path(
|
|
"workspaces/<str:slug>/projects/<uuid:project_id>/issues/<uuid:issue_id>/comments/",
|
|
IssueCommentAPIEndpoint.as_view(),
|
|
name="comment",
|
|
),
|
|
path(
|
|
"workspaces/<str:slug>/projects/<uuid:project_id>/issues/<uuid:issue_id>/comments/<uuid:pk>/",
|
|
IssueCommentAPIEndpoint.as_view(),
|
|
name="comment",
|
|
),
|
|
path(
|
|
"workspaces/<str:slug>/projects/<uuid:project_id>/issues/<uuid:issue_id>/activities/",
|
|
IssueActivityAPIEndpoint.as_view(),
|
|
name="activity",
|
|
),
|
|
path(
|
|
"workspaces/<str:slug>/projects/<uuid:project_id>/issues/<uuid:issue_id>/activities/<uuid:pk>/",
|
|
IssueActivityAPIEndpoint.as_view(),
|
|
name="activity",
|
|
),
|
|
path(
|
|
"workspaces/<str:slug>/projects/<uuid:project_id>/issues/<uuid:issue_id>/issue-attachments/",
|
|
IssueAttachmentEndpoint.as_view(),
|
|
name="attachment",
|
|
),
|
|
]
|