Class: Decidim::Elections::Admin::PublishElection
- Inherits:
-
Command
- Object
- Command
- Decidim::Elections::Admin::PublishElection
- Defined in:
- app/commands/decidim/elections/admin/publish_election.rb
Overview
This command gets called when an election is published from the admin panel.
Instance Method Summary collapse
-
#call ⇒ Object
Public: Publishes the Election.
-
#initialize(election, current_user) ⇒ PublishElection
constructor
Public: Initializes the command.
Constructor Details
#initialize(election, current_user) ⇒ PublishElection
Public: Initializes the command.
election - The election to publish. current_user - the user performing the action
12 13 14 15 |
# File 'app/commands/decidim/elections/admin/publish_election.rb', line 12 def initialize(election, current_user) @election = election @current_user = current_user end |
Instance Method Details
#call ⇒ Object
Public: Publishes the Election.
Broadcasts :ok if published, :invalid otherwise.
20 21 22 23 24 25 |
# File 'app/commands/decidim/elections/admin/publish_election.rb', line 20 def call publish_election publish_event unless election.previously_published? broadcast(:ok, election) end |