Sha256: 199fdc0f7e451c53a190b8e345a503d42ee907d361bcf6fb2708813568b9d30b
Contents?: true
Size: 1.64 KB
Versions: 18
Compression:
Stored size: 1.64 KB
Contents
# frozen_string_literal: true module Decidim module Initiatives module Admin # A command with all the business logic that sends an # existing initiative to technical validation. class SendInitiativeToTechnicalValidation < Decidim::Command # Public: Initializes the command. # # initiative - Decidim::Initiative # current_user - the user performing the action def initialize(initiative, current_user) @initiative = initiative @current_user = current_user 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 @initiative = Decidim.traceability.perform_action!( :send_to_technical_validation, initiative, current_user ) do initiative.validating! initiative end notify_admins broadcast(:ok, initiative) end private attr_reader :initiative, :current_user def notify_admins affected_users = Decidim::User.org_admins_except_me(current_user).all data = { event: "decidim.events.initiatives.admin.initiative_sent_to_technical_validation", event_class: Decidim::Initiatives::Admin::InitiativeSentToTechnicalValidationEvent, resource: initiative, affected_users:, force_send: true } Decidim::EventsManager.publish(**data) end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems