debian-mirror-gitlab/lib/sidebars/concerns/has_active_routes.rb
2021-06-08 01:23:25 +05:30

19 lines
471 B
Ruby

# frozen_string_literal: true
module Sidebars
module Concerns
module HasActiveRoutes
# This method will indicate for which paths or
# controllers, the menu or menu item should
# be set as active.
#
# The returned values are passed to the `nav_link` helper method,
# so the params can be either `path`, `page`, `controller`.
# Param 'action' is not supported.
def active_routes
{}
end
end
end
end