Class: Decidim::Admin::UpdateAttachment
- Inherits:
-
Command
- Object
- Command
- Decidim::Admin::UpdateAttachment
- Includes:
- Decidim::AttachmentAttributesMethods
- Defined in:
- app/commands/decidim/admin/update_attachment.rb
Overview
A command with all the business logic to update an attachment from a participatory process.
Instance Attribute Summary collapse
-
#attachment ⇒ Object
readonly
Returns the value of attribute attachment.
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(attachment, form) ⇒ UpdateAttachment
constructor
Public: Initializes the command.
Constructor Details
#initialize(attachment, form) ⇒ UpdateAttachment
Public: Initializes the command.
attachment - the Attachment to update form - A form object with the params.
17 18 19 20 |
# File 'app/commands/decidim/admin/update_attachment.rb', line 17 def initialize(, form) @attachment = @form = form end |
Instance Attribute Details
#attachment ⇒ Object (readonly)
Returns the value of attribute attachment.
10 11 12 |
# File 'app/commands/decidim/admin/update_attachment.rb', line 10 def @attachment 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.
28 29 30 31 32 33 |
# File 'app/commands/decidim/admin/update_attachment.rb', line 28 def call return broadcast(:invalid) if form.invalid? broadcast(:ok) end |