class Decidim::Meetings::Admin::ApplicationController

override its layout and provide all kinds of useful methods.
Note that it inherits from ‘Decidim::Components::BaseController`, which
this engine inherit.
This controller is the abstract class from which all other controllers of

def meeting

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

def meetings

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