Sha256: 4c500246798c2ae9b1713f83e095137cc8afb39513828d36bc8d1ee9ae8aca2c
Contents?: true
Size: 939 Bytes
Versions: 8
Compression:
Stored size: 939 Bytes
Contents
# frozen_string_literal: true module Decidim module Admin # A command with all the business logic when creating an area class CreateArea < Decidim::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 was not valid and we could not proceed. # # Returns nothing. def call return broadcast(:invalid) if form.invalid? create_area broadcast(:ok) end private attr_reader :form def create_area Decidim.traceability.create!( Area, form.current_user, name: form.name, organization: form.organization, area_type: form.area_type ) end end end end
Version data entries
8 entries across 8 versions & 1 rubygems