Class: Decidim::Lausanne::Budgets::Admin::ApplicationController
- Inherits:
-
Admin::Components::BaseController
- Object
- Admin::Components::BaseController
- Decidim::Lausanne::Budgets::Admin::ApplicationController
- Defined in:
- app/controllers/decidim/lausanne/budgets/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.
Direct Known Subclasses
AttachmentCollectionsController, AttachmentsController, LausanneBudgetsController, ProjectsController, ProposalsImportsController
Instance Method Summary collapse
Instance Method Details
#budget ⇒ Object
15 16 17 |
# File 'app/controllers/decidim/lausanne/budgets/admin/application_controller.rb', line 15 def budget @budget ||= LausanneBudget.where(component: current_component).includes(:projects).find_by(id: params[:lausanne_budget_id]) end |
#project ⇒ Object
25 26 27 28 29 |
# File 'app/controllers/decidim/lausanne/budgets/admin/application_controller.rb', line 25 def project return unless projects @project ||= projects.find(params[:id]) end |
#projects ⇒ Object
19 20 21 22 23 |
# File 'app/controllers/decidim/lausanne/budgets/admin/application_controller.rb', line 19 def projects return unless budget @projects ||= budget.projects end |