Class: Decidim::Consultations::VoteQuestion
- Inherits:
-
Decidim::Command
- Object
- Decidim::Command
- Decidim::Consultations::VoteQuestion
- Defined in:
- app/commands/decidim/consultations/vote_question.rb
Overview
A command with all the business logic when a user votes a question.
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(form) ⇒ VoteQuestion
constructor
Public: Initializes the command.
Constructor Details
#initialize(form) ⇒ VoteQuestion
Public: Initializes the command.
form - A Decidim::Consultations::VoteForm object. current_user - The current user.
11 12 13 |
# File 'app/commands/decidim/consultations/vote_question.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, together with the vote.
-
:invalid if the form wasn’t valid and we couldn’t proceed.
Returns nothing.
21 22 23 24 25 26 27 28 |
# File 'app/commands/decidim/consultations/vote_question.rb', line 21 def call vote = build_vote if vote.save broadcast(:ok, vote) else broadcast(:invalid, vote) end end |