43 lines
		
	
	
		
			978 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			978 B
		
	
	
	
		
			Ruby
		
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
class Admin::DomainAllowsController < Admin::BaseController
 | 
						|
  before_action :set_domain_allow, only: [:destroy]
 | 
						|
 | 
						|
  def new
 | 
						|
    authorize :domain_allow, :create?
 | 
						|
 | 
						|
    @domain_allow = DomainAllow.new(domain: params[:_domain])
 | 
						|
  end
 | 
						|
 | 
						|
  def create
 | 
						|
    authorize :domain_allow, :create?
 | 
						|
 | 
						|
    @domain_allow = DomainAllow.new(resource_params)
 | 
						|
 | 
						|
    if @domain_allow.save
 | 
						|
      log_action :create, @domain_allow
 | 
						|
      redirect_to admin_instances_path, notice: I18n.t('admin.domain_allows.created_msg')
 | 
						|
    else
 | 
						|
      render :new
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  def destroy
 | 
						|
    authorize @domain_allow, :destroy?
 | 
						|
    UnallowDomainService.new.call(@domain_allow)
 | 
						|
    log_action :destroy, @domain_allow
 | 
						|
 | 
						|
    redirect_to admin_instances_path, notice: I18n.t('admin.domain_allows.destroyed_msg')
 | 
						|
  end
 | 
						|
 | 
						|
  private
 | 
						|
 | 
						|
  def set_domain_allow
 | 
						|
    @domain_allow = DomainAllow.find(params[:id])
 | 
						|
  end
 | 
						|
 | 
						|
  def resource_params
 | 
						|
    params.require(:domain_allow).permit(:domain)
 | 
						|
  end
 | 
						|
end
 |