Sha256: 943ff3010f395beeff15ee0089a9d2ebf354e8c82efe884b2be701f7c1004782

Contents?: true

Size: 1.13 KB

Versions: 12

Compression:

Stored size: 1.13 KB

Contents

# frozen_string_literal: true

module Decidim
  module Consultations
    module Admin
      # A command with all the business logic when updating a new response group
      class UpdateResponseGroup < Decidim::Command
        # Public: Initializes the command.
        #
        # response_group - the response group to update
        # form - A form object with the params.
        def initialize(response_group, form)
          @response_group = response_group
          @form = form
        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?

          broadcast(:ok, update_response_group)
        end

        private

        attr_reader :form, :response_group

        def update_response_group
          response_group.assign_attributes(attributes)
          response_group.save!
        end

        def attributes
          {
            title: form.title
          }
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
decidim-consultations-0.27.9 app/commands/decidim/consultations/admin/update_response_group.rb
decidim-consultations-0.27.8 app/commands/decidim/consultations/admin/update_response_group.rb
decidim-consultations-0.27.7 app/commands/decidim/consultations/admin/update_response_group.rb
decidim-consultations-0.27.6 app/commands/decidim/consultations/admin/update_response_group.rb
decidim-consultations-0.27.5 app/commands/decidim/consultations/admin/update_response_group.rb
decidim-consultations-0.27.4 app/commands/decidim/consultations/admin/update_response_group.rb
decidim-consultations-0.27.3 app/commands/decidim/consultations/admin/update_response_group.rb
decidim-consultations-0.27.2 app/commands/decidim/consultations/admin/update_response_group.rb
decidim-consultations-0.27.1 app/commands/decidim/consultations/admin/update_response_group.rb
decidim-consultations-0.27.0 app/commands/decidim/consultations/admin/update_response_group.rb
decidim-consultations-0.27.0.rc2 app/commands/decidim/consultations/admin/update_response_group.rb
decidim-consultations-0.27.0.rc1 app/commands/decidim/consultations/admin/update_response_group.rb