chore: endpoints and history logs for issue draft (#2180)
* chore: history logs for issue draft * fix: created seperated endpoints for issue drafts * fix: fixed the typo
This commit is contained in:
parent
4e0e02522f
commit
a53b428bbd
4 changed files with 155 additions and 15 deletions
|
|
@ -1038,6 +1038,7 @@ urlpatterns = [
|
|||
IssueDraftViewSet.as_view(
|
||||
{
|
||||
"get": "list",
|
||||
"post": "create",
|
||||
}
|
||||
),
|
||||
name="project-issue-draft",
|
||||
|
|
@ -1047,6 +1048,7 @@ urlpatterns = [
|
|||
IssueDraftViewSet.as_view(
|
||||
{
|
||||
"get": "retrieve",
|
||||
"patch": "partial_update",
|
||||
"delete": "destroy",
|
||||
}
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue