Class: Decidim::Amendable::UpdateDraft
- Inherits:
-
Rectify::Command
- Object
- Rectify::Command
- Decidim::Amendable::UpdateDraft
- Defined in:
- app/commands/decidim/amendable/update_draft.rb
Overview
A command with all the business logic when a user updates and amendment draft.
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(form) ⇒ UpdateDraft
constructor
Public: Initializes the command.
Constructor Details
#initialize(form) ⇒ UpdateDraft
Public: Initializes the command.
form - A form object with the params.
10 11 12 13 14 15 16 17 |
# File 'app/commands/decidim/amendable/update_draft.rb', line 10 def initialize(form) @form = form @amendment = form.amendment @amender = form.amender @emendation = form.emendation @current_user = form.current_user @user_group = Decidim::UserGroup.find_by(id: form.user_group_id) end |
Instance Method Details
#call ⇒ Object
Executes the command. Broadcasts these events:
-
:ok when everything is valid, together with the amend.
-
:invalid if the amendment is not a draft.
-
:invalid if the form isn’t valid or the amender is not the current user.
Returns nothing.
26 27 28 29 30 31 32 33 34 |
# File 'app/commands/decidim/amendable/update_draft.rb', line 26 def call return broadcast(:invalid) unless form.valid? && amendment.draft? && amender == current_user transaction do update_draft end broadcast(:ok, @amendment) end |