diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2016-11-14 14:44:27 +0100 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2016-11-14 15:22:06 +0100 |
commit | 76bd09326fe070d4c865b6fbc1718673d096c178 (patch) | |
tree | 51cdbf23ce1e1beeebc84b9e95a5b8f9eeb6ac66 /lib/api/users.rb | |
parent | 36fa5d660df96c49484cd27695da1df6e361eb8f (diff) | |
download | gitlab-ce-grapify-declared-params.tar.gz |
Use declared_params helper in APIgrapify-declared-params
Diffstat (limited to 'lib/api/users.rb')
-rw-r--r-- | lib/api/users.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/users.rb b/lib/api/users.rb index 298c401a816..aea328d2f8f 100644 --- a/lib/api/users.rb +++ b/lib/api/users.rb @@ -335,7 +335,7 @@ module API requires :id, type: String, desc: 'The user ID' end get ':id/events' do - user = User.find_by(id: declared(params).id) + user = User.find_by(id: params[:id]) not_found!('User') unless user events = user.events. |