Sha256: 29b135b5489c6d206ce07590497f542854c5f9555ced5378ec024f54f0dcc9dd

Contents?: true

Size: 894 Bytes

Versions: 65

Compression:

Stored size: 894 Bytes

Contents

# frozen_string_literal: true

module Decidim
  module Admin
    # A command with all the business logic when creating an area type.
    class CreateAreaType < Rectify::Command
      # Public: Initializes the command.
      #
      # form - A form object with the params.
      def initialize(form)
        @form = form
      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
        return broadcast(:invalid) if form.invalid?

        create_area_type
        broadcast(:ok)
      end

      private

      attr_reader :form

      def create_area_type
        AreaType.create!(
          name: form.name,
          organization: form.organization,
          plural: form.plural
        )
      end
    end
  end
end

Version data entries

65 entries across 65 versions & 1 rubygems

Version Path
decidim-admin-0.12.0.pre app/commands/decidim/admin/create_area_type.rb
decidim-admin-0.11.1 app/commands/decidim/admin/create_area_type.rb
decidim-admin-0.11.0.pre1 app/commands/decidim/admin/create_area_type.rb
decidim-admin-0.10.1 app/commands/decidim/admin/create_area_type.rb
decidim-admin-0.10.0 app/commands/decidim/admin/create_area_type.rb