Welcome to mirror list, hosted at ThFree Co, Russian Federation.

has_active_routes.rb « concerns « sidebars « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 50c9f8c85a188a9d7e65d1f61fc2e7582959554d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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