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

commits.rb « menu_items « repository « menus « projects « sidebars « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 647cf89133efa4026901bcc54ebd499d891a44fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# frozen_string_literal: true

module Sidebars
  module Projects
    module Menus
      module Repository
        module MenuItems
          class Commits < ::Sidebars::MenuItem
            override :link
            def link
              project_commits_path(context.project, context.current_ref)
            end

            override :extra_container_html_options
            def extra_container_html_options
              {
                id: 'js-onboarding-commits-link'
              }
            end

            override :active_routes
            def active_routes
              { controller: %w(commit commits) }
            end

            override :title
            def title
              _('Commits')
            end
          end
        end
      end
    end
  end
end