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:
Bavisetti Narayan 2023-09-14 15:38:11 +05:30 committed by GitHub
parent 4e0e02522f
commit a53b428bbd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 155 additions and 15 deletions

View file

@ -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",
}
),