class Decidim::Meetings::CloseMeetingForm
This class holds a Form to close a meeting from Decidim’s public views.
def map_model(model)
Private: Gets the proposals from the meeting and injects them to the form.
def map_model(model) self.proposal_ids = model.linked_resources(:proposals, "proposals_from_meeting").pluck(:id) presenter = MeetingEditionPresenter.new(model) self.closing_report = presenter.closing_report(all_locales: false) end
def proposals
def proposals @proposals = Decidim.find_resource_manifest(:proposals) .try(:resource_scope, current_component) &.where(id: proposal_ids) &.order(title: :asc) end