diff options
author | Hiroyuki Sato <sathiroyuki@gmail.com> | 2017-09-03 16:34:50 +0900 |
---|---|---|
committer | Hiroyuki Sato <sathiroyuki@gmail.com> | 2017-09-05 11:56:17 +0900 |
commit | cf9c54bd312dcb7b4b7f0602e83013d8d32a9413 (patch) | |
tree | 2399ac0f228e6e02c6dd429d167aa131a4ae5f68 /lib/api | |
parent | 597bc29260c4be3a1527a1c5307bec40004bac4d (diff) | |
download | gitlab-ce-cf9c54bd312dcb7b4b7f0602e83013d8d32a9413.tar.gz |
Add my_reaction_emoji param to /issues API
Diffstat (limited to 'lib/api')
-rw-r--r-- | lib/api/issues.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/api/issues.rb b/lib/api/issues.rb index e4c2c390853..1729df2aad0 100644 --- a/lib/api/issues.rb +++ b/lib/api/issues.rb @@ -36,6 +36,7 @@ module API optional :assignee_id, type: Integer, desc: 'Return issues which are assigned to the user with the given ID' optional :scope, type: String, values: %w[created-by-me assigned-to-me all], desc: 'Return issues for the given scope: `created-by-me`, `assigned-to-me` or `all`' + optional :my_reaction_emoji, type: String, desc: 'Return issues reacted by the authenticated user by the given emoji' use :pagination end |