Class: Decidim::Meetings::Admin::CloseMeetingForm
- Inherits:
-
Form
- Object
- Form
- Decidim::Meetings::Admin::CloseMeetingForm
- Includes:
- TranslatableAttributes
- Defined in:
- decidim-meetings/app/forms/decidim/meetings/admin/close_meeting_form.rb
Overview
This class holds a Form to close a meeting from Decidim’s admin panel.
Instance Method Summary collapse
-
#map_model(model) ⇒ Object
Private: Gets the proposals from the meeting and injects them to the form.
Instance Method Details
#map_model(model) ⇒ Object
Private: Gets the proposals from the meeting and injects them to the form.
Returns nothing.
25 26 27 28 |
# File 'decidim-meetings/app/forms/decidim/meetings/admin/close_meeting_form.rb', line 25 def map_model(model) self.proposal_ids = model.linked_resources(:proposals, "proposals_from_meeting").pluck(:id) self.proposals = model.sibling_scope(:proposals) end |