From a0b19517915f6c6ae839b036ba466aacd46a9485 Mon Sep 17 00:00:00 2001 From: alpaca-tc Date: Sun, 7 May 2017 00:03:34 +0900 Subject: Refactor domain_blocks_controller (#2843) * Set domain_block by before_action * Cast value with ActiveRecord::Type * Batch update --- app/controllers/admin/domain_blocks_controller.rb | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'app/controllers/admin') diff --git a/app/controllers/admin/domain_blocks_controller.rb b/app/controllers/admin/domain_blocks_controller.rb index 10396899b..1ab620e03 100644 --- a/app/controllers/admin/domain_blocks_controller.rb +++ b/app/controllers/admin/domain_blocks_controller.rb @@ -2,6 +2,8 @@ module Admin class DomainBlocksController < BaseController + before_action :set_domain_block, only: [:show, :destroy] + def index @domain_blocks = DomainBlock.page(params[:page]) end @@ -21,24 +23,25 @@ module Admin end end - def show - @domain_block = DomainBlock.find(params[:id]) - end + def show; end def destroy - @domain_block = DomainBlock.find(params[:id]) UnblockDomainService.new.call(@domain_block, retroactive_unblock?) redirect_to admin_domain_blocks_path, notice: I18n.t('admin.domain_blocks.destroyed_msg') end private + def set_domain_block + @domain_block = DomainBlock.find(params[:id]) + end + def resource_params params.require(:domain_block).permit(:domain, :severity, :reject_media, :retroactive) end def retroactive_unblock? - resource_params[:retroactive] == '1' + ActiveRecord::Type.lookup(:boolean).cast(resource_params[:retroactive]) end end end -- cgit