* Replace will_paginate with kaminari * Use #page instead of #paginate in controllers * Replace will_paginate.page_gap with pagination.truncate in i18n * Customize kaminari views to match prior styles * Set kaminari options to match prior behavior * Replace will_paginate with paginate in views
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			647 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			647 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
module Admin
 | 
						|
  class DomainBlocksController < BaseController
 | 
						|
    def index
 | 
						|
      @blocks = DomainBlock.page(params[:page])
 | 
						|
    end
 | 
						|
 | 
						|
    def new
 | 
						|
      @domain_block = DomainBlock.new
 | 
						|
    end
 | 
						|
 | 
						|
    def create
 | 
						|
      @domain_block = DomainBlock.new(resource_params)
 | 
						|
 | 
						|
      if @domain_block.save
 | 
						|
        DomainBlockWorker.perform_async(@domain_block.id)
 | 
						|
        redirect_to admin_domain_blocks_path, notice: 'Domain block is now being processed'
 | 
						|
      else
 | 
						|
        render action: :new
 | 
						|
      end
 | 
						|
    end
 | 
						|
 | 
						|
    private
 | 
						|
 | 
						|
    def resource_params
 | 
						|
      params.require(:domain_block).permit(:domain, :severity)
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |