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

#maps_enabled?Boolean

Returns:

  • (Boolean)


23
24
25
# File 'app/controllers/decidim/meetings/admin/application_controller.rb', line 23

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

#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.not_hidden.where(component: current_component).order(start_time: :desc).page(params[:page]).per(15)
end