1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-11-29 07:18:48 +09:00
whippy-edition/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