1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-01 16:28:35 +09:00
YuruToot/app/policies/ip_block_policy.rb

16 lines
170 B
Ruby
Raw Normal View History

2020-10-12 23:33:49 +09:00
# frozen_string_literal: true
class IpBlockPolicy < ApplicationPolicy
def index?
admin?
end
def create?
admin?
end
def destroy?
admin?
end
end