Class: Decidim::Amendable::Promote
- Inherits:
-
Rectify::Command
- Object
- Rectify::Command
- Decidim::Amendable::Promote
- Defined in:
- app/commands/decidim/amendable/promote.rb
Overview
A command with all the business logic when a user promotes a rejected emendation.
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(form) ⇒ Promote
constructor
Public: Initializes the command.
Constructor Details
#initialize(form) ⇒ Promote
Public: Initializes the command.
emendation - The emendation to promote. amendable - The amendable resource.
11 12 13 14 15 16 17 18 |
# File 'app/commands/decidim/amendable/promote.rb', line 11 def initialize(form) @form = form @amendment = form.amendment @emendation = form.emendation @amendable = form.amendable @amender = form.amender @current_user = form.current_user end |
Instance Method Details
#call ⇒ Object
Executes the command. Broadcasts these events:
-
:ok when everything is valid and the emendation is promoted.
-
:invalid if the transaction fails
Returns nothing.
26 27 28 29 30 31 32 33 34 35 36 |
# File 'app/commands/decidim/amendable/promote.rb', line 26 def call return broadcast(:invalid) unless form.valid? && amendment.rejected? && amender == current_user transaction do promote_emendation! link_promoted_emendation_and_proposal end broadcast(:ok, @promoted_emendation) end |