Sha256: d68e2a9b2e880e999a862d25f15936be0b6063b710f1b9e64d2a1823c5067228

Contents?: true

Size: 1011 Bytes

Versions: 37

Compression:

Stored size: 1011 Bytes

Contents

# frozen_string_literal: true

module Decidim
  module Consultations
    module Admin
      # A command with all the business logic to destroy a response group in the
      # system.
      class DestroyResponseGroup < Rectify::Command
        # Public: Initializes the command.
        #
        # response_group - A ResponseGroup that will be destroyed
        def initialize(response_group)
          @response_group = response_group
        end

        # Executes the command. Broadcasts these events:
        #
        # - :ok when everything is valid.
        # - :invalid if the data wasn't valid and we couldn't proceed.
        #
        # Returns nothing.
        def call
          return broadcast(:invalid) if response_group.nil? || response_group.responses.any?

          destroy_response_group
          broadcast(:ok)
        end

        private

        attr_reader :response_group

        def destroy_response_group
          response_group.destroy!
        end
      end
    end
  end
end

Version data entries

37 entries across 37 versions & 1 rubygems

Version Path
decidim-consultations-0.26.10 app/commands/decidim/consultations/admin/destroy_response_group.rb
decidim-consultations-0.26.9 app/commands/decidim/consultations/admin/destroy_response_group.rb
decidim-consultations-0.26.8 app/commands/decidim/consultations/admin/destroy_response_group.rb
decidim-consultations-0.26.7 app/commands/decidim/consultations/admin/destroy_response_group.rb
decidim-consultations-0.26.5 app/commands/decidim/consultations/admin/destroy_response_group.rb
decidim-consultations-0.26.4 app/commands/decidim/consultations/admin/destroy_response_group.rb
decidim-consultations-0.26.3 app/commands/decidim/consultations/admin/destroy_response_group.rb
decidim-consultations-0.26.2 app/commands/decidim/consultations/admin/destroy_response_group.rb
decidim-consultations-0.26.1 app/commands/decidim/consultations/admin/destroy_response_group.rb
decidim-consultations-0.26.0 app/commands/decidim/consultations/admin/destroy_response_group.rb
decidim-consultations-0.26.0.rc2 app/commands/decidim/consultations/admin/destroy_response_group.rb
decidim-consultations-0.26.0.rc1 app/commands/decidim/consultations/admin/destroy_response_group.rb
decidim-consultations-0.25.2 app/commands/decidim/consultations/admin/destroy_response_group.rb
decidim-consultations-0.25.1 app/commands/decidim/consultations/admin/destroy_response_group.rb
decidim-consultations-0.25.0 app/commands/decidim/consultations/admin/destroy_response_group.rb
decidim-consultations-0.25.0.rc4 app/commands/decidim/consultations/admin/destroy_response_group.rb
decidim-consultations-0.25.0.rc3 app/commands/decidim/consultations/admin/destroy_response_group.rb
decidim-consultations-0.25.0.rc2 app/commands/decidim/consultations/admin/destroy_response_group.rb
decidim-consultations-0.25.0.rc1 app/commands/decidim/consultations/admin/destroy_response_group.rb
decidim-consultations-0.24.3 app/commands/decidim/consultations/admin/destroy_response_group.rb