c618d3a0a5
Previously all controllers would use the single "No accounts changed as none were selected" message. This commit changes them to read "tags", "posts", "emojis", etc. where necessary.
48 lines
1.3 KiB
Ruby
48 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::Trends::StatusesController < Admin::BaseController
|
|
def index
|
|
authorize :status, :review?
|
|
|
|
@locales = StatusTrend.pluck('distinct language')
|
|
@statuses = filtered_statuses.page(params[:page])
|
|
@form = Trends::StatusBatch.new
|
|
end
|
|
|
|
def batch
|
|
authorize :status, :review?
|
|
|
|
@form = Trends::StatusBatch.new(trends_status_batch_params.merge(current_account: current_account, action: action_from_button))
|
|
@form.save
|
|
rescue ActionController::ParameterMissing
|
|
flash[:alert] = I18n.t('admin.trends.statuses.no_status_selected')
|
|
ensure
|
|
redirect_to admin_trends_statuses_path(filter_params)
|
|
end
|
|
|
|
private
|
|
|
|
def filtered_statuses
|
|
Trends::StatusFilter.new(filter_params.with_defaults(trending: 'all')).results.includes(:account, :media_attachments, :active_mentions)
|
|
end
|
|
|
|
def filter_params
|
|
params.slice(:page, *Trends::StatusFilter::KEYS).permit(:page, *Trends::StatusFilter::KEYS)
|
|
end
|
|
|
|
def trends_status_batch_params
|
|
params.require(:trends_status_batch).permit(:action, status_ids: [])
|
|
end
|
|
|
|
def action_from_button
|
|
if params[:approve]
|
|
'approve'
|
|
elsif params[:approve_accounts]
|
|
'approve_accounts'
|
|
elsif params[:reject]
|
|
'reject'
|
|
elsif params[:reject_accounts]
|
|
'reject_accounts'
|
|
end
|
|
end
|
|
end
|