Class: Decidim::ActionDelegator::Admin::UpdateSetting

Inherits:
Command
  • Object
show all
Defined in:
app/commands/decidim/action_delegator/admin/update_setting.rb

Instance Method Summary collapse

Constructor Details

#initialize(form, setting, copy_from_setting) ⇒ UpdateSetting

Public: Initializes the command.

form - A form object with the params.



10
11
12
13
14
# File 'app/commands/decidim/action_delegator/admin/update_setting.rb', line 10

def initialize(form, setting, copy_from_setting)
  @form = form
  @setting = setting
  @copy_from_setting = copy_from_setting
end

Instance Method Details

#callObject

Executes the command. Broadcasts these events:

  • :ok when everything is valid.

  • :invalid if the form wasn’t valid and we couldn’t proceed.

Returns nothing.



22
23
24
25
26
27
28
# File 'app/commands/decidim/action_delegator/admin/update_setting.rb', line 22

def call
  return broadcast(:invalid) if form.invalid?

  update_setting

  broadcast(:ok, setting)
end