diff options
author | Lanre Adelowo <adelowomailbox@gmail.com> | 2019-06-06 01:37:45 +0100 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2019-06-06 08:37:45 +0800 |
commit | de6539fc8c37485afcd6f30092a9ccbc3cae7de5 (patch) | |
tree | 02aec172ffe99ac123b56b301c70774f1f3f1292 /modules/structs | |
parent | 59e6a7b97f503c12ef2a6096ca7f127f81521b7a (diff) | |
download | gitea-de6539fc8c37485afcd6f30092a9ccbc3cae7de5.tar.gz gitea-de6539fc8c37485afcd6f30092a9ccbc3cae7de5.zip |
Add state param to milestone listing API (#7131)
* Support state params
* update tests
* fix tests
* add state=all support
* update tests
* update swagger
* update swagger
Diffstat (limited to 'modules/structs')
-rw-r--r-- | modules/structs/issue.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/structs/issue.go b/modules/structs/issue.go index af6aa6e541..6d7517bdc7 100644 --- a/modules/structs/issue.go +++ b/modules/structs/issue.go @@ -16,6 +16,8 @@ const ( StateOpen StateType = "open" // StateClosed pr is closed StateClosed StateType = "closed" + // StateAll is all + StateAll StateType = "all" ) // PullRequestMeta PR info if an issue is a PR |