Method: CoreLibrary::AuthGroup#with_auth_managers

Defined in:
lib/apimatic-core/authentication/multiple/auth_group.rb

#with_auth_managers(auth_managers) ⇒ Single

Extracts out the auth from the given auth managers.



26
27
28
29
30
31
# File 'lib/apimatic-core/authentication/multiple/auth_group.rb', line 26

def with_auth_managers(auth_managers)
  @auth_participants.each do |participant|
    @mapped_group.append(participant.with_auth_managers(auth_managers))
  end
  self
end