Sha256: 87064460c0e77bcf7f30db531c4311e71afbb6b457927e3bbfd966dfe8ba0b82
Contents?: true
Size: 1.24 KB
Versions: 7
Compression:
Stored size: 1.24 KB
Contents
# frozen_string_literal: true module Decidim module Admin # A command with all the business logic when updating an attachment collection. class UpdateAttachmentCollection < Decidim::Command delegate :current_user, to: :form # Public: Initializes the command. # # attachment_collection - The AttachmentCollection to update # form - A form object with the params. def initialize(attachment_collection, form) @attachment_collection = attachment_collection @form = form end # 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. def call return broadcast(:invalid) if form.invalid? update_attachment_collection broadcast(:ok) end private attr_reader :form def update_attachment_collection Decidim.traceability.update!( @attachment_collection, current_user, attributes ) end def attributes { name: form.name, weight: form.weight, description: form.description } end end end end
Version data entries
7 entries across 7 versions & 1 rubygems