Class: Decidim::ActionDelegator::Admin::UpdateSetting
- Inherits:
-
Command
- Object
- Command
- Decidim::ActionDelegator::Admin::UpdateSetting
- Defined in:
- app/commands/decidim/action_delegator/admin/update_setting.rb
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(form, setting, copy_from_setting) ⇒ UpdateSetting
constructor
Public: Initializes the command.
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
#call ⇒ Object
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 |