0
0
Fork 0

Refactor domain_blocks_controller (#2843)

* Set domain_block by before_action

* Cast value with ActiveRecord::Type

* Batch update
This commit is contained in:
alpaca-tc 2017-05-07 00:03:34 +09:00 committed by Eugen Rochko
parent 2d45794956
commit a0b1951791
3 changed files with 13 additions and 8 deletions

View file

@ -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