Sha256: ed77bbdbf044e72e470d6f1dd3a1481614074f2a2f57abc2f7241ef76f90b92e

Contents?: true

Size: 1.15 KB

Versions: 12

Compression:

Stored size: 1.15 KB

Contents

# frozen_string_literal: true

module Decidim
  module Assemblies
    module Admin
      # A command with all the business logic when destroying an assembly
      # type in the system.
      class DestroyAssembliesType < Decidim::Command
        # Public: Initializes the command.
        #
        # assemblies_type - the AssemblyMember to destroy
        # current_user - the user performing the action
        def initialize(assemblies_type, current_user)
          @assemblies_type = assemblies_type
          @current_user = current_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
          destroy_assembly_type!
          broadcast(:ok)
        end

        private

        attr_reader :current_user

        def destroy_assembly_type!
          Decidim.traceability.perform_action!(
            "delete",
            @assemblies_type,
            current_user
          ) do
            @assemblies_type.destroy!
          end
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

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