Class: Decidim::Consultations::Admin::CreateResponseGroup
- Inherits:
-
Decidim::Command
- Object
- Decidim::Command
- Decidim::Consultations::Admin::CreateResponseGroup
- Defined in:
- app/commands/decidim/consultations/admin/create_response_group.rb
Overview
A command with all the business logic when creating a new response group
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(form) ⇒ CreateResponseGroup
constructor
Public: Initializes the command.
Constructor Details
#initialize(form) ⇒ CreateResponseGroup
Public: Initializes the command.
form - A form object with the params.
11 12 13 |
# File 'app/commands/decidim/consultations/admin/create_response_group.rb', line 11 def initialize(form) @form = form 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.
21 22 23 24 25 |
# File 'app/commands/decidim/consultations/admin/create_response_group.rb', line 21 def call return broadcast(:invalid) if form.invalid? broadcast(:ok, create_response_group) end |