Class: Decidim::Elections::Admin::UnpublishElection

Inherits:
Command
  • Object
show all
Defined in:
decidim-elections/app/commands/decidim/elections/admin/unpublish_election.rb

Overview

This command gets called when an election is unpublished from the admin panel.

Instance Method Summary collapse

Methods inherited from Command

call, #evaluate, #method_missing, #respond_to_missing?, #transaction, #with_events

Constructor Details

#initialize(election, current_user) ⇒ UnpublishElection

Public: Initializes the command.

election - The election to unpublish. current_user - the user performing the action



12
13
14
15
# File 'decidim-elections/app/commands/decidim/elections/admin/unpublish_election.rb', line 12

def initialize(election, current_user)
  @election = election
  @current_user = current_user
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Decidim::Command

Instance Method Details

#callObject

Public: Unpublishes the Election.

Broadcasts :ok if unpublished, :invalid otherwise.



20
21
22
23
24
# File 'decidim-elections/app/commands/decidim/elections/admin/unpublish_election.rb', line 20

def call
  unpublish_election

  broadcast(:ok)
end