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 maps_enabled?

def maps_enabled?
  @maps_enabled ||= current_component.settings.maps_enabled?
end

def meeting

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

def meetings

def meetings
  @meetings ||= Meeting.not_hidden.where(component: current_component).order(start_time: :desc).page(params[:page]).per(15)
end