class Micro::Authorization::Permissions::RoleChecker

Attributes

features[R]
required_features[R]

Public Class Methods

new(role, feature) click to toggle source
# File lib/micro/authorization/permissions/checker.rb, line 9
def initialize(role, feature)
  @role = role
  @features = Utils.downcased_strings(feature)
end