Class: Decidim::Initiatives::Admin::UnpublishInitiative
- Inherits:
-
Command
- Object
- Command
- Decidim::Initiatives::Admin::UnpublishInitiative
- Defined in:
- app/commands/decidim/initiatives/admin/unpublish_initiative.rb
Overview
A command with all the business logic that unpublishes an existing initiative.
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(initiative, current_user) ⇒ UnpublishInitiative
constructor
Public: Initializes the command.
Constructor Details
#initialize(initiative, current_user) ⇒ UnpublishInitiative
Public: Initializes the command.
initiative - Decidim::Initiative current_user - the user performing the action
13 14 15 16 |
# File 'app/commands/decidim/initiatives/admin/unpublish_initiative.rb', line 13 def initialize(initiative, current_user) @initiative = initiative @current_user = current_user end |
Instance Method Details
#call ⇒ Object
Executes the command. Broadcasts these events:
-
:ok when everything is valid.
-
:invalid if the form was not valid and we could not proceed.
Returns nothing.
24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'app/commands/decidim/initiatives/admin/unpublish_initiative.rb', line 24 def call return broadcast(:invalid) unless initiative.published? @initiative = Decidim.traceability.perform_action!( :unpublish, initiative, current_user ) do initiative.unpublish! initiative end broadcast(:ok, initiative) end |