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

applications_menu.rb « menus « user_settings « sidebars « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c71f9a9660b4d0acdb6690081d4b121075b5829b (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
# frozen_string_literal: true

module Sidebars
  module UserSettings
    module Menus
      class ApplicationsMenu < ::Sidebars::Menu
        include ::Sidebars::Concerns::RenderIfLoggedIn

        override :link
        def link
          applications_profile_path
        end

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

        override :sprite_icon
        def sprite_icon
          'applications'
        end

        override :active_routes
        def active_routes
          { controller: 'oauth/applications' }
        end
      end
    end
  end
end