Sha256: 564520abb7d56993e30cce949ce36d46b96e144044891ff99041e2335f4b7306
Contents?: true
Size: 737 Bytes
Versions: 13
Compression:
Stored size: 737 Bytes
Contents
# frozen_string_literal: true module Decidim module Meetings # 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. module Directory class ApplicationController < Decidim::ApplicationController include HasSpecificBreadcrumb helper Decidim::Meetings::Directory::ApplicationHelper private def breadcrumb_item { label: t("decidim.pages.home.extended.meetings"), url: root_path, active: true } end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems