Sha256: a9df5b0fddf6e45347865afe0448febd31bf127c1ffe94a48f6c679634164e34
Contents?: true
Size: 1.38 KB
Versions: 8
Compression:
Stored size: 1.38 KB
Contents
# frozen_string_literal: true module Decidim module Debates module Admin # A command with all the business logic when an admin closes a debate. class CloseDebate < 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, together with the debate. # - :invalid if the form was not valid and we could not proceed. # # Returns nothing. def call return broadcast(:invalid) if form.invalid? close_debate broadcast(:ok, debate) end private attr_reader :form def close_debate @debate = Decidim.traceability.perform_action!( :close, form.debate, form.current_user ) do form.debate.update!( conclusions: form.conclusions, closed_at: form.closed_at ) end Decidim::EventsManager.publish( event: "decidim.events.debates.debate_closed", event_class: Decidim::Debates::CloseDebateEvent, resource: debate, followers: debate.followers ) end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems