class ActivityPermissionEngine::CheckAuthorization::Response

Attributes

authorized[R]

Public Class Methods

new(authorized) click to toggle source
# File lib/activity_permission_engine/check_authorization.rb, line 35
def initialize(authorized)
  @authorized = authorized
end

Public Instance Methods

authorized?() click to toggle source
# File lib/activity_permission_engine/check_authorization.rb, line 39
def authorized?
  authorized
end