mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 21:29:38 +02:00
14 lines
316 B
Ruby
14 lines
316 B
Ruby
|
module Breadcrumbable
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
included do
|
||
|
before_action :set_breadcrumbs
|
||
|
end
|
||
|
|
||
|
private
|
||
|
# The default, unless specific controller or action explicitly overrides
|
||
|
def set_breadcrumbs
|
||
|
@breadcrumbs = [ [ "Home", root_path ], [ controller_name.titleize, nil ] ]
|
||
|
end
|
||
|
end
|