2020-10-12 15:33:49 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class IpBlockPolicy < ApplicationPolicy
|
|
|
|
def index?
|
2022-07-05 01:41:40 +01:00
|
|
|
role.can?(:manage_blocks)
|
2020-10-12 15:33:49 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def create?
|
2022-07-05 01:41:40 +01:00
|
|
|
role.can?(:manage_blocks)
|
2020-10-12 15:33:49 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy?
|
2022-07-05 01:41:40 +01:00
|
|
|
role.can?(:manage_blocks)
|
2020-10-12 15:33:49 +01:00
|
|
|
end
|
|
|
|
end
|