Class: Decidim::Votings::Voter::InPersonVote
- Inherits:
-
Command
- Object
- Command
- Decidim::Votings::Voter::InPersonVote
- Defined in:
- app/commands/decidim/votings/voter/in_person_vote.rb
Overview
This command allows the user to register an in person vote.
Instance Method Summary collapse
-
#call ⇒ Object
Store and register the in person vote in the bulletin board.
-
#initialize(form) ⇒ InPersonVote
constructor
Public: Initializes the command.
Constructor Details
#initialize(form) ⇒ InPersonVote
Public: Initializes the command.
form - A form with necessary info to register an in person vote.
11 12 13 |
# File 'app/commands/decidim/votings/voter/in_person_vote.rb', line 11 def initialize(form) @form = form end |
Instance Method Details
#call ⇒ Object
Store and register the in person vote in the bulletin board
Broadcasts :ok if successful, :invalid otherwise
18 19 20 21 22 23 24 25 26 27 28 |
# File 'app/commands/decidim/votings/voter/in_person_vote.rb', line 18 def call return broadcast(:invalid) if form.invalid? transaction do register_in_person_vote end broadcast(:ok, in_person_vote) rescue StandardError => e broadcast(:invalid, e.) end |