Class: Decidim::Debates::CloseDebate
- Inherits:
-
Command
- Object
- Command
- Decidim::Debates::CloseDebate
- Defined in:
- app/commands/decidim/debates/close_debate.rb
Overview
A command with all the business logic when a user updates a debate.
Direct Known Subclasses
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(form) ⇒ CloseDebate
constructor
Public: Initializes the command.
Constructor Details
#initialize(form) ⇒ CloseDebate
Public: Initializes the command.
form - A form object with the params.
10 11 12 |
# File 'app/commands/decidim/debates/close_debate.rb', line 10 def initialize(form) @form = form end |
Instance Method Details
#call ⇒ Object
Executes the command. Broadcasts these events:
-
:ok when everything is valid, together with the debate.
-
:invalid if the form was not valid and we could not proceed.
Returns nothing.
20 21 22 23 24 25 |
# File 'app/commands/decidim/debates/close_debate.rb', line 20 def call return broadcast(:invalid) if form.invalid? close_debate broadcast(:ok, debate) end |