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