2017-04-14 09:10:28 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class ReportedStatusesController < BaseController
|
2017-05-30 20:56:31 +00:00
|
|
|
include Authorization
|
|
|
|
|
2017-05-23 17:45:43 +00:00
|
|
|
before_action :set_report
|
2017-07-18 14:38:22 +00:00
|
|
|
before_action :set_status, only: [:update, :destroy]
|
|
|
|
|
|
|
|
def create
|
|
|
|
@form = Form::StatusBatch.new(form_status_batch_params)
|
|
|
|
flash[:alert] = t('admin.statuses.failed_to_execute') unless @form.save
|
|
|
|
|
|
|
|
redirect_to admin_report_path(@report)
|
|
|
|
end
|
2017-05-23 17:45:43 +00:00
|
|
|
|
|
|
|
def update
|
|
|
|
@status.update(status_params)
|
|
|
|
redirect_to admin_report_path(@report)
|
|
|
|
end
|
2017-04-14 09:10:28 +00:00
|
|
|
|
2017-05-23 17:45:43 +00:00
|
|
|
def destroy
|
2017-05-30 20:56:31 +00:00
|
|
|
authorize @status, :destroy?
|
2017-05-23 17:45:43 +00:00
|
|
|
RemovalWorker.perform_async(@status.id)
|
2017-07-18 14:38:22 +00:00
|
|
|
render json: @status
|
2017-04-14 09:10:28 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-05-23 17:45:43 +00:00
|
|
|
def status_params
|
|
|
|
params.require(:status).permit(:sensitive)
|
|
|
|
end
|
|
|
|
|
2017-07-18 14:38:22 +00:00
|
|
|
def form_status_batch_params
|
|
|
|
params.require(:form_status_batch).permit(:action, status_ids: [])
|
|
|
|
end
|
|
|
|
|
2017-05-23 17:45:43 +00:00
|
|
|
def set_report
|
|
|
|
@report = Report.find(params[:report_id])
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_status
|
|
|
|
@status = @report.statuses.find(params[:id])
|
2017-04-14 09:10:28 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|