Sha256: 8379c2a23c8c1a88fd1d43c88368d68cbabab8bb09b7dadba910159afd714db1
Contents?: true
Size: 1.46 KB
Versions: 65
Compression:
Stored size: 1.46 KB
Contents
# frozen_string_literal: true module Decidim module ParticipatoryProcesses module Admin # A command with all the business logic when creating a new participatory # process in the system. class CreateParticipatoryProcessStep < Rectify::Command # Public: Initializes the command. # # form - A form object with the params. # participatory_process - The ParticipatoryProcess that will hold the # step def initialize(form, participatory_process) @form = form @participatory_process = participatory_process 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_participatory_process_step broadcast(:ok) end private attr_reader :form def create_participatory_process_step Decidim.traceability.create!( ParticipatoryProcessStep, @form.current_user, title: form.title, description: form.description, start_date: form.start_date, end_date: form.end_date, participatory_process: @participatory_process, active: @participatory_process.steps.empty? ) end end end end end
Version data entries
65 entries across 65 versions & 1 rubygems