diff options
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 ) |