Class: Decidim::Meetings::Admin::ApplicationController

Inherits:
Admin::Components::BaseController
  • Object
show all
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::Components::BaseController`, which override its layout and provide all kinds of useful methods.

Instance Method Summary collapse

Instance Method Details

#meetingObject



19
20
21
# File 'app/controllers/decidim/meetings/admin/application_controller.rb', line 19

def meeting
  @meeting ||= meetings.find(params[:id]) if params[:id]
end

#meetingsObject



15
16
17
# File 'app/controllers/decidim/meetings/admin/application_controller.rb', line 15

def meetings
  @meetings ||= Meeting.where(component: current_component).order("created_at DESC").page(params[:page]).per(15)
end