mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-10-31 20:14:26 +00:00
41 lines
938 B
Ruby
41 lines
938 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)
|
|
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
|