Sha256: 3e494441262ba65048500155901afa4b63e878429828ee1f6d87073509686658
Contents?: true
Size: 1008 Bytes
Versions: 18
Compression:
Stored size: 1008 Bytes
Contents
# frozen_string_literal: true module Decidim module ParticipatoryProcesses module Admin # A command that sets all steps in a participatory process as inactive class DeactivateParticipatoryProcessStep < Rectify::Command # Public: Initializes the command. # # step - A ParticipatoryProcessStep that will be deactivated 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? deactivate_active_steps broadcast(:ok) end private attr_reader :step def deactivate_active_steps step.participatory_process.steps.where(active: true).update_all(active: false) end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems