Sha256: f1371afebb72d36a1af316fef5fc713052126d1aefa2c7eccd8fd7ddac07964c
Contents?: true
Size: 1.69 KB
Versions: 4
Compression:
Stored size: 1.69 KB
Contents
# frozen_string_literal: true module Decidim module Meetings module Admin # This command is executed when the user closes a Meeting from the admin # panel. class CloseMeeting < Rectify::Command # Initializes a CloseMeeting Command. # # form - The form from which to get the data. # meeting - The current instance of the page to be closed. def initialize(form, meeting) @form = form @meeting = meeting end # Closes the meeting if valid. # # Broadcasts :ok if successful, :invalid otherwise. def call return broadcast(:invalid) if form.invalid? transaction do close_meeting link_proposals end broadcast(:ok) end private attr_reader :form, :meeting def close_meeting meeting.update_attributes!( closing_report: form.closing_report, attendees_count: form.attendees_count, contributions_count: form.contributions_count, attending_organizations: form.attending_organizations, closed_at: form.closed_at ) Decidim::EventsManager.publish( event: "decidim.events.meetings.meeting_closed", event_class: Decidim::Meetings::CloseMeetingEvent, resource: meeting, recipient_ids: meeting.followers.pluck(:id) ) end def proposals meeting.sibling_scope(:proposals).where(id: @form.proposal_ids) end def link_proposals meeting.link_resources(proposals, "proposals_from_meeting") end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems