chinwagsocial/app/policies/ip_block_policy.rb

24 lines
327 B
Ruby
Raw Permalink Normal View History

2020-10-13 01:33:49 +11:00
# frozen_string_literal: true
class IpBlockPolicy < ApplicationPolicy
def index?
role.can?(:manage_blocks)
2020-10-13 01:33:49 +11:00
end
def show?
role.can?(:manage_blocks)
end
2020-10-13 01:33:49 +11:00
def create?
role.can?(:manage_blocks)
2020-10-13 01:33:49 +11:00
end
def update?
role.can?(:manage_blocks)
end
2020-10-13 01:33:49 +11:00
def destroy?
role.can?(:manage_blocks)
2020-10-13 01:33:49 +11:00
end
end