Sha256: 429cdc2399b5f34072ea8b9ce4a88691164368d46af07392daddf20105e444f4
Contents?: true
Size: 1.43 KB
Versions: 12
Compression:
Stored size: 1.43 KB
Contents
# frozen_string_literal: true module Decidim module Admin # A command with all the business logic to update an attachment from a # participatory process. class UpdateAttachment < Decidim::Command include ::Decidim::AttachmentAttributesMethods attr_reader :attachment # Public: Initializes the command. # # attachment - the Attachment to update # form - A form object with the params. def initialize(attachment, form, user) @attachment = attachment @form = form @user = user end # Executes the command. Broadcasts these events: # # - :ok when everything is valid. # - :invalid if the form wasn't valid and we couldn't proceed. # # Returns nothing. def call return broadcast(:invalid) if form.invalid? update_attachment broadcast(:ok) end private attr_reader :form def update_attachment Decidim.traceability.update!(@attachment, @user, attributes) end def attributes { title: form.title, file: form.file, description: form.description, weight: form.weight, attachment_collection: form.attachment_collection }.merge( attachment_attributes(:file) ).reject do |attribute, value| value.blank? && attribute != :attachment_collection end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems