diff options
author | Yamagishi Kazutoshi <ykzts@desire.sh> | 2017-06-08 20:24:28 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-06-08 13:24:28 +0200 |
commit | 0a0b9a271a8de84272ff2dafc96ef53db224bb21 (patch) | |
tree | 39a325adf00bb3f57d65510029d9b85d1d4b5de1 /app/controllers/api | |
parent | 7d2b4186c37ec81ae896eb57168cb0374de2c656 (diff) |
Improve RuboCop rules (compatibility to Code Climate) (#3636)
https://github.com/codeclimate/codeclimate-rubocop/blob/08f8de84ebfb39caa96391e23816877278f6441c/Gemfile.lock#L38 Code Climate is using RuboCop v0.46.0. Change several rules to maintain compatibility.
Diffstat (limited to 'app/controllers/api')
-rw-r--r-- | app/controllers/api/v1/notifications_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/v1/notifications_controller.rb b/app/controllers/api/v1/notifications_controller.rb index 20b28776d..a28e99f2f 100644 --- a/app/controllers/api/v1/notifications_controller.rb +++ b/app/controllers/api/v1/notifications_controller.rb @@ -51,7 +51,7 @@ class Api::V1::NotificationsController < Api::BaseController end def target_statuses_from_notifications - @notifications.select { |notification| !notification.target_status.nil? }.map(&:target_status) + @notifications.reject { |notification| notification.target_status.nil? }.map(&:target_status) end def insert_pagination_headers |