Sha256: 704502681c6e75a1c2a388e85bda50c8c21255d70aacb0ac61c9cf4e99cdba5a

Contents?: true

Size: 1.47 KB

Versions: 8

Compression:

Stored size: 1.47 KB

Contents

# frozen_string_literal: true

module Decidim
  module Conferences
    module Admin
      # A command with all the business logic when destroying a conference
      # registration type in the system.
      class DestroyRegistrationType < Decidim::Command
        # Public: Initializes the command.
        #
        # registration_type - the Partner to destroy
        # current_user - the user performing this action
        def initialize(registration_type, current_user)
          @registration_type = registration_type
          @current_user = current_user
        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
          destroy_registration_type!
          broadcast(:ok)
        end

        private

        attr_reader :registration_type, :current_user

        def destroy_registration_type!
          log_info = {
            resource: {
              title: registration_type.title
            },
            participatory_space: {
              title: registration_type.conference.title
            }
          }

          Decidim.traceability.perform_action!(
            "delete",
            registration_type,
            current_user,
            log_info
          ) do
            registration_type.destroy!
            registration_type
          end
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
decidim-conferences-0.28.5 app/commands/decidim/conferences/admin/destroy_registration_type.rb
decidim-conferences-0.28.4 app/commands/decidim/conferences/admin/destroy_registration_type.rb
decidim-conferences-0.28.3 app/commands/decidim/conferences/admin/destroy_registration_type.rb
decidim-conferences-0.28.2 app/commands/decidim/conferences/admin/destroy_registration_type.rb
decidim-conferences-0.28.1 app/commands/decidim/conferences/admin/destroy_registration_type.rb
decidim-conferences-0.28.0 app/commands/decidim/conferences/admin/destroy_registration_type.rb
decidim-conferences-0.28.0.rc5 app/commands/decidim/conferences/admin/destroy_registration_type.rb
decidim-conferences-0.28.0.rc4 app/commands/decidim/conferences/admin/destroy_registration_type.rb