1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-24 23:26:42 +09:00
YuruToot/app/policies/domain_allow_policy.rb

12 lines
143 B
Ruby
Raw Normal View History

2019-07-30 18:10:46 +09:00
# frozen_string_literal: true
class DomainAllowPolicy < ApplicationPolicy
def create?
admin?
end
def destroy?
admin?
end
end