Sha256: 4209296c3ad131babb40cc2583942b57523eb206f234580c927b2e410a5aab6c
Contents?: true
Size: 1.1 KB
Versions: 17
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true module Decidim module Admin # A command that sets a step in a participatory process as active (and # unsets a previous active step) class ActivateParticipatoryProcessStep < Rectify::Command # Public: Initializes the command. # # step - A ParticipatoryProcessStep that will be activated def initialize(step) @step = step 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 step.nil? || step.active? Decidim::ParticipatoryProcessStep.transaction do deactivate_active_steps activate_step end broadcast(:ok) end private attr_reader :step def deactivate_active_steps step.participatory_process.steps.where(active: true).update_all(active: false) end def activate_step step.update_attribute(:active, true) end end end end
Version data entries
17 entries across 17 versions & 2 rubygems