Fix GET /api/v1/admin/ip_blocks/:id (#20207)

local
trwnh 2 years ago committed by GitHub
parent 5333447be0
commit 029b5cd5b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      app/policies/ip_block_policy.rb

@ -5,6 +5,10 @@ class IpBlockPolicy < ApplicationPolicy
role.can?(:manage_blocks)
end
def show?
role.can?(:manage_blocks)
end
def create?
role.can?(:manage_blocks)
end

Loading…
Cancel
Save