Sha256: 069f5acced71128a289693d70a5fab0ae6ea88be89309fd410115d76be556d0c

Contents?: true

Size: 1023 Bytes

Versions: 19

Compression:

Stored size: 1023 Bytes

Contents

# frozen_string_literal: true

module Decidim
  module Budgets
    module Admin
      # This command is executed when the user deletes a Project from the admin
      # panel.
      class DestroyProject < Decidim::Command
        # Initializes an UpdateProject Command.
        #
        # project - The current instance of the project to be destroyed.
        # current_user - the user that performs the action
        def initialize(project, current_user)
          @project = project
          @current_user = current_user
        end

        # Performs the action.
        #
        # Broadcasts :ok if successful, :invalid otherwise.
        def call
          destroy_project
          broadcast(:ok)
        end

        private

        attr_reader :project, :current_user

        def destroy_project
          Decidim.traceability.perform_action!(
            :delete,
            project,
            current_user
          ) do
            project.destroy!
          end
        end
      end
    end
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
decidim-budgets-0.28.4 app/commands/decidim/budgets/admin/destroy_project.rb
decidim-budgets-0.27.9 app/commands/decidim/budgets/admin/destroy_project.rb
decidim-budgets-0.28.3 app/commands/decidim/budgets/admin/destroy_project.rb
decidim-budgets-0.27.8 app/commands/decidim/budgets/admin/destroy_project.rb
decidim-budgets-0.28.2 app/commands/decidim/budgets/admin/destroy_project.rb
decidim-budgets-0.27.7 app/commands/decidim/budgets/admin/destroy_project.rb
decidim-budgets-0.28.1 app/commands/decidim/budgets/admin/destroy_project.rb
decidim-budgets-0.27.6 app/commands/decidim/budgets/admin/destroy_project.rb
decidim-budgets-0.28.0 app/commands/decidim/budgets/admin/destroy_project.rb
decidim-budgets-0.27.5 app/commands/decidim/budgets/admin/destroy_project.rb
decidim-budgets-0.28.0.rc5 app/commands/decidim/budgets/admin/destroy_project.rb
decidim-budgets-0.28.0.rc4 app/commands/decidim/budgets/admin/destroy_project.rb
decidim-budgets-0.27.4 app/commands/decidim/budgets/admin/destroy_project.rb
decidim-budgets-0.27.3 app/commands/decidim/budgets/admin/destroy_project.rb
decidim-budgets-0.27.2 app/commands/decidim/budgets/admin/destroy_project.rb
decidim-budgets-0.27.1 app/commands/decidim/budgets/admin/destroy_project.rb
decidim-budgets-0.27.0 app/commands/decidim/budgets/admin/destroy_project.rb
decidim-budgets-0.27.0.rc2 app/commands/decidim/budgets/admin/destroy_project.rb
decidim-budgets-0.27.0.rc1 app/commands/decidim/budgets/admin/destroy_project.rb