Sha256: 80be66332a746dd0e3aaeb88fd975e52ac907a51128870b49945abacdb05bca2

Contents?: true

Size: 854 Bytes

Versions: 119

Compression:

Stored size: 854 Bytes

Contents

# frozen_string_literal: true

module Decidim
  module Admin
    # A command with all the business logic to destroy a category in the
    # system.
    class DestroyCategory < Rectify::Command
      # Public: Initializes the command.
      #
      # category - A Category that will be destroyed
      def initialize(category)
        @category = category
      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 category.nil? || category.subcategories.any?

        destroy_category
        broadcast(:ok)
      end

      private

      attr_reader :category

      def destroy_category
        category.destroy!
      end
    end
  end
end

Version data entries

119 entries across 119 versions & 2 rubygems

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