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

details.rb « menu_items « project_overview « menus « projects « sidebars « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c40c2ed8fa2f3b0f1ec605c7789e8c5cf7d7bd2b (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
36
# frozen_string_literal: true

module Sidebars
  module Projects
    module Menus
      module ProjectOverview
        module MenuItems
          class Details < ::Sidebars::MenuItem
            override :link
            def link
              project_path(context.project)
            end

            override :extra_container_html_options
            def extra_container_html_options
              {
                aria: { label: _('Project details') },
                class: 'shortcuts-project'
              }
            end

            override :active_routes
            def active_routes
              { path: 'projects#show' }
            end

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