diff options
author | masarakki <masaki182@gmail.com> | 2017-05-16 19:10:09 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-05-16 12:10:09 +0200 |
commit | 1b0a5658f15eeca0934a892d95dd93222d8da583 (patch) | |
tree | 0a3e5baf4cf3e83d9c8bfb6ac3e5eee0778a2a1b /app/controllers/admin | |
parent | 682b68438e7b9c1755151777bbb6849c00ca98e4 (diff) |
use-symbol-in-order (#3081)
Diffstat (limited to 'app/controllers/admin')
-rw-r--r-- | app/controllers/admin/pubsubhubbub_controller.rb | 2 | ||||
-rw-r--r-- | app/controllers/admin/reports_controller.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/admin/pubsubhubbub_controller.rb b/app/controllers/admin/pubsubhubbub_controller.rb index 31c80a174..2677a59e4 100644 --- a/app/controllers/admin/pubsubhubbub_controller.rb +++ b/app/controllers/admin/pubsubhubbub_controller.rb @@ -3,7 +3,7 @@ module Admin class PubsubhubbubController < BaseController def index - @subscriptions = Subscription.order('id desc').includes(:account).page(params[:page]) + @subscriptions = Subscription.order(id: :desc).includes(:account).page(params[:page]) end end end diff --git a/app/controllers/admin/reports_controller.rb b/app/controllers/admin/reports_controller.rb index fc63ca5c0..2d8c3c820 100644 --- a/app/controllers/admin/reports_controller.rb +++ b/app/controllers/admin/reports_controller.rb @@ -49,7 +49,7 @@ module Admin end def filtered_reports - ReportFilter.new(filter_params).results.order('id desc').includes( + ReportFilter.new(filter_params).results.order(id: :desc).includes( :account, :target_account ) |