Class: Decidim::ActionDelegator::Admin::CreateSetting

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

Instance Method Summary collapse

Constructor Details

#initialize(form, copy_from_setting) ⇒ CreateSetting

Public: Initializes the command.

form - A form object with the params.



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

def initialize(form, copy_from_setting)
  @form = form
  @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.



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

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

  create_setting

  broadcast(:ok, setting)
end