Sha256: 0e43e28c050c687250757ac36ff5822bc2b82d061d3d64e7bc2691e1c07fa0ce
Contents?: true
Size: 486 Bytes
Versions: 18
Compression:
Stored size: 486 Bytes
Contents
# frozen_string_literal: true require "active_support/concern" module Decidim # Include this concern in controllers associated with own account to insert the # corresponding element breadcrumb module HasAccountBreadcrumb extend ActiveSupport::Concern included do include HasSpecificBreadcrumb private def breadcrumb_item { label: t("layouts.decidim.user_menu.profile"), active: true } end end end end
Version data entries
18 entries across 18 versions & 1 rubygems