1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

[API] Add ref to create/edit issue options & deprecated assignee (#13992)

* API: Add ref to create/edit issue options

* deprecate Assignee in favour of Assignees
This commit is contained in:
6543
2020-12-15 18:38:10 +00:00
committed by GitHub
parent 980b0df829
commit e2aa701812
3 changed files with 27 additions and 6 deletions

View File

@@ -11937,7 +11937,7 @@
],
"properties": {
"assignee": {
"description": "username of assignee",
"description": "deprecated",
"type": "string",
"x-go-name": "Assignee"
},
@@ -11976,6 +11976,10 @@
"format": "int64",
"x-go-name": "Milestone"
},
"ref": {
"type": "string",
"x-go-name": "Ref"
},
"title": {
"type": "string",
"x-go-name": "Title"
@@ -12778,6 +12782,7 @@
"type": "object",
"properties": {
"assignee": {
"description": "deprecated",
"type": "string",
"x-go-name": "Assignee"
},
@@ -12802,6 +12807,10 @@
"format": "int64",
"x-go-name": "Milestone"
},
"ref": {
"type": "string",
"x-go-name": "Ref"
},
"state": {
"type": "string",
"x-go-name": "State"