OpenSourcePolitics/decidim-module-budgets_enhanced

View on GitHub
app/controllers/decidim/budgets_enhanced/application_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Decidim
  module BudgetsEnhanced
    # 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.
    class ApplicationController < Decidim::Components::BaseController
    end
  end
end