You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
938 B
40 lines
938 B
# 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) |
|
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
|
|
|