2017-04-14 05:10:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class ReportedStatusesController < BaseController
|
2017-05-30 16:56:31 -04:00
|
|
|
include Authorization
|
|
|
|
|
2017-05-23 13:45:43 -04:00
|
|
|
before_action :set_report
|
|
|
|
before_action :set_status
|
|
|
|
|
|
|
|
def update
|
|
|
|
@status.update(status_params)
|
|
|
|
redirect_to admin_report_path(@report)
|
|
|
|
end
|
2017-04-14 05:10:28 -04:00
|
|
|
|
2017-05-23 13:45:43 -04:00
|
|
|
def destroy
|
2017-05-30 16:56:31 -04:00
|
|
|
authorize @status, :destroy?
|
2017-05-23 13:45:43 -04:00
|
|
|
RemovalWorker.perform_async(@status.id)
|
|
|
|
redirect_to admin_report_path(@report)
|
2017-04-14 05:10:28 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-05-23 13:45:43 -04:00
|
|
|
def status_params
|
|
|
|
params.require(:status).permit(:sensitive)
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_report
|
|
|
|
@report = Report.find(params[:report_id])
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_status
|
|
|
|
@status = @report.statuses.find(params[:id])
|
2017-04-14 05:10:28 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|