Sha256: c4385b5e89197f8be8bc2c2099779caf8388d07ef85bd1ca7d709173426aef6b
Contents?: true
Size: 1.15 KB
Versions: 12
Compression:
Stored size: 1.15 KB
Contents
# frozen_string_literal: true module Decidim module Meetings module Admin # A command with all the business logic that unpublishes an # existing meeting. class UnpublishMeeting < Decidim::Command # Public: Initializes the command. # # meeting - Decidim::Meetings::Meeting # current_user - the user performing the action def initialize(meeting, current_user) @meeting = meeting @current_user = current_user 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) unless meeting.published? @meeting = Decidim.traceability.perform_action!( :unpublish, meeting, current_user, visibility: "all" ) do meeting.unpublish! meeting end broadcast(:ok, meeting) end private attr_reader :meeting, :current_user end end end end
Version data entries
12 entries across 12 versions & 1 rubygems