Module: TroleGroups::Strategy::BaseMany

Defined in:
lib/trole_groups/strategy.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.included(base) ⇒ Object

Note:

the Trole::Api also includes the Troles::Common::Api

a Many role strategy is included by a role subject (fx a UserAccount class) a Many role strategy should always include BaseMany when BaseMany is included, it ensures that the complete Troles API is also included into the role subject

Parameters:

  • the (Class)

    role subject class for which to include the Role strategy (fx User Account)



18
19
20
# File 'lib/trole_groups/strategy.rb', line 18

def self.included(base)  
  base.send :include, TroleGroups::Api
end

Instance Method Details

#group_storeTroles::Storage

The storage to use

Returns:

  • (Troles::Storage)

    a storage subclass instance matching the needs of the strategy



24
25
26
# File 'lib/trole_groups/strategy.rb', line 24

def group_store
  @group_store ||= group_storage.new self
end