Class: CanTango::Permits::UserPermit::Builder

Inherits:
CanTango::PermitEngine::Builder::Base show all
Defined in:
lib/cantango/permits/user_permit/builder.rb

Instance Attribute Summary

Attributes inherited from CanTango::PermitEngine::Builder::Base

#ability

Instance Method Summary collapse

Methods inherited from CanTango::PermitEngine::Builder::Base

#initialize

Methods included from Helpers::Debug

#debug

Constructor Details

This class inherits a constructor from CanTango::PermitEngine::Builder::Base

Instance Method Details

#buildArray<Permit::Base>

builds a list of Permits for each role of the current ability user (or account)

Returns:

  • (Array<Permit::Base>)

    the role permits built for this ability



9
10
11
12
# File 'lib/cantango/permits/user_permit/builder.rb', line 9

def build
  puts debug_msg if CanTango.debug?
  [permit].compact
end

#nameObject



14
15
16
# File 'lib/cantango/permits/user_permit/builder.rb', line 14

def name
  :user
end