Sha256: cd592fcadf44197b01c19e17eef48534c4e70549e514fb17d7415693eb45ba88

Contents?: true

Size: 876 Bytes

Versions: 2

Compression:

Stored size: 876 Bytes

Contents

# frozen_string_literal: true

module Decidim
  module Admin
    # A command with all the business logic when creating an area
    class CreateArea < 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
        broadcast(:ok)
      end

      private

      attr_reader :form

      def create_area
        Area.create!(
          name: form.name,
          organization: form.organization,
          area_type: form.area_type
        )
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
decidim-admin-0.10.1 app/commands/decidim/admin/create_area.rb
decidim-admin-0.10.0 app/commands/decidim/admin/create_area.rb