|
|
@ -14,7 +14,7 @@ module Admin
|
|
|
|
@statuses = @account.statuses.where(visibility: [:public, :unlisted])
|
|
|
|
@statuses = @account.statuses.where(visibility: [:public, :unlisted])
|
|
|
|
|
|
|
|
|
|
|
|
if params[:media]
|
|
|
|
if params[:media]
|
|
|
|
@statuses.merge!(Status.joins(:media_attachments).merge(@account.media_attachments.reorder(nil)).group(:id))
|
|
|
|
@statuses.merge!(Status.joins(:media_attachments).merge(@account.media_attachments.reorder(nil)).group(:id)).reorder('statuses.id desc')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
@statuses = @statuses.preload(:media_attachments, :mentions).page(params[:page]).per(PER_PAGE)
|
|
|
|
@statuses = @statuses.preload(:media_attachments, :mentions).page(params[:page]).per(PER_PAGE)
|
|
|
|