Class: Decidim::Meetings::Admin::ApplicationController
- Inherits:
-
Admin::Features::BaseController
- Object
- Admin::Features::BaseController
- Decidim::Meetings::Admin::ApplicationController
- Defined in:
- app/controllers/decidim/meetings/admin/application_controller.rb
Overview
This controller is the abstract class from which all other controllers of this engine inherit.
Note that it inherits from ‘Decidim::Features::BaseController`, which override its layout and provide all kinds of useful methods.
Direct Known Subclasses
AttachmentsController, InvitesController, MeetingClosesController, MeetingsController, RegistrationsController
Instance Method Summary collapse
Instance Method Details
#meeting ⇒ Object
18 19 20 |
# File 'app/controllers/decidim/meetings/admin/application_controller.rb', line 18 def meeting @meeting ||= meetings.find(params[:id]) end |
#meetings ⇒ Object
14 15 16 |
# File 'app/controllers/decidim/meetings/admin/application_controller.rb', line 14 def meetings @meetings ||= Meeting.where(feature: current_feature).page(params[:page]).per(15) end |