Class: Decidim::Budgets::Admin::ApplicationController

Inherits:
Admin::Components::BaseController
  • Object
show all
Defined in:
app/controllers/decidim/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.

Instance Method Summary collapse

Instance Method Details

#projectObject



18
19
20
# File 'app/controllers/decidim/budgets/admin/application_controller.rb', line 18

def project
  @project ||= projects.find(params[:id])
end

#projectsObject



14
15
16
# File 'app/controllers/decidim/budgets/admin/application_controller.rb', line 14

def projects
  @projects ||= Project.where(component: current_component)
end