Class: Services::UpdateConfiguredAccountContext

Inherits:
Object
  • Object
show all
Defined in:
app/contexts/services/update_configured_account_context.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(configured_account, ca_params, cred_params) ⇒ UpdateConfiguredAccountContext

Returns a new instance of UpdateConfiguredAccountContext.



11
12
13
14
15
16
# File 'app/contexts/services/update_configured_account_context.rb', line 11

def initialize(, ca_params, cred_params)
  @configured_account = 
  @ca_params = ca_params
  @cred_params = cred_params
  @configured_account.extend Services::ConfiguredAccountUpdater
end

Instance Attribute Details

#ca_paramsObject

Returns the value of attribute ca_params.



5
6
7
# File 'app/contexts/services/update_configured_account_context.rb', line 5

def ca_params
  @ca_params
end

#configured_accountObject

Returns the value of attribute configured_account.



5
6
7
# File 'app/contexts/services/update_configured_account_context.rb', line 5

def 
  @configured_account
end

#cred_paramsObject

Returns the value of attribute cred_params.



5
6
7
# File 'app/contexts/services/update_configured_account_context.rb', line 5

def cred_params
  @cred_params
end

Class Method Details

.call(configured_account, ca_params, cred_params) ⇒ Object



7
8
9
# File 'app/contexts/services/update_configured_account_context.rb', line 7

def self.call(, ca_params, cred_params)
  UpdateConfiguredAccountContext.new(, ca_params, cred_params).call
end

Instance Method Details

#callObject



18
19
20
21
22
# File 'app/contexts/services/update_configured_account_context.rb', line 18

def call
  .update(ca_params).tap do |  |
    UpdateCredentialContext.call(, cred_params) 
  end
end