* Use table for statuses in report * Display reported account and reporter in the same table * Split accounts and general report info into two tables again * Redesign report statuses table, notes, merge notes and action log * Remove unused translations * Fix code style issue * Fix code style issue * Fix code style issue
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
module Admin
 | 
						|
  class ReportedStatusesController < BaseController
 | 
						|
    before_action :set_report
 | 
						|
    before_action :set_status, only: [:update, :destroy]
 | 
						|
 | 
						|
    def create
 | 
						|
      authorize :status, :update?
 | 
						|
 | 
						|
      @form         = Form::StatusBatch.new(form_status_batch_params.merge(current_account: current_account, action: action_from_button))
 | 
						|
      flash[:alert] = I18n.t('admin.statuses.failed_to_execute') unless @form.save
 | 
						|
 | 
						|
      redirect_to admin_report_path(@report)
 | 
						|
    end
 | 
						|
 | 
						|
    def update
 | 
						|
      authorize @status, :update?
 | 
						|
      @status.update!(status_params)
 | 
						|
      log_action :update, @status
 | 
						|
      redirect_to admin_report_path(@report)
 | 
						|
    end
 | 
						|
 | 
						|
    def destroy
 | 
						|
      authorize @status, :destroy?
 | 
						|
      RemovalWorker.perform_async(@status.id)
 | 
						|
      log_action :destroy, @status
 | 
						|
      render json: @status
 | 
						|
    end
 | 
						|
 | 
						|
    private
 | 
						|
 | 
						|
    def status_params
 | 
						|
      params.require(:status).permit(:sensitive)
 | 
						|
    end
 | 
						|
 | 
						|
    def form_status_batch_params
 | 
						|
      params.require(:form_status_batch).permit(status_ids: [])
 | 
						|
    end
 | 
						|
 | 
						|
    def action_from_button
 | 
						|
      if params[:nsfw_on]
 | 
						|
        'nsfw_on'
 | 
						|
      elsif params[:nsfw_off]
 | 
						|
        'nsfw_off'
 | 
						|
      elsif params[:delete]
 | 
						|
        'delete'
 | 
						|
      end
 | 
						|
    end
 | 
						|
 | 
						|
    def set_report
 | 
						|
      @report = Report.find(params[:report_id])
 | 
						|
    end
 | 
						|
 | 
						|
    def set_status
 | 
						|
      @status = @report.statuses.find(params[:id])
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |