Browse Source

use-symbol-in-order (#3081)

closed-social-v3
masarakki 7 years ago
committed by Eugen Rochko
parent
commit
1b0a5658f1
3 changed files with 4 additions and 4 deletions
  1. +2
    -2
      app/controllers/accounts_controller.rb
  2. +1
    -1
      app/controllers/admin/pubsubhubbub_controller.rb
  3. +1
    -1
      app/controllers/admin/reports_controller.rb

+ 2
- 2
app/controllers/accounts_controller.rb View File

@ -6,12 +6,12 @@ class AccountsController < ApplicationController
def show
respond_to do |format|
format.html do
@statuses = @account.statuses.permitted_for(@account, current_account).order('id desc').paginate_by_max_id(20, params[:max_id], params[:since_id])
@statuses = @account.statuses.permitted_for(@account, current_account).order(id: :desc).paginate_by_max_id(20, params[:max_id], params[:since_id])
@statuses = cache_collection(@statuses, Status)
end
format.atom do
@entries = @account.stream_entries.order('id desc').where(hidden: false).with_includes.paginate_by_max_id(20, params[:max_id], params[:since_id])
@entries = @account.stream_entries.order(id: :desc).where(hidden: false).with_includes.paginate_by_max_id(20, params[:max_id], params[:since_id])
render xml: AtomSerializer.render(AtomSerializer.new.feed(@account, @entries.to_a))
end

+ 1
- 1
app/controllers/admin/pubsubhubbub_controller.rb View File

@ -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

+ 1
- 1
app/controllers/admin/reports_controller.rb View File

@ -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…
Cancel
Save