use-symbol-in-order (#3081)
This commit is contained in:
parent
682b68438e
commit
1b0a5658f1
3 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue