You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
400 B
20 lines
400 B
# frozen_string_literal: true
|
|
|
|
class UserRolePolicy < ApplicationPolicy
|
|
def index?
|
|
role.can?(:manage_roles)
|
|
end
|
|
|
|
def create?
|
|
role.can?(:manage_roles)
|
|
end
|
|
|
|
def update?
|
|
role.can?(:manage_roles) && (role.overrides?(record) || role.id == record.id)
|
|
end
|
|
|
|
def destroy?
|
|
!record.everyone? && role.can?(:manage_roles) && role.overrides?(record) && role.id != record.id
|
|
end
|
|
end
|