debian-mirror-gitlab/lib/sidebars/user_profile/menus/starred_projects_menu.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
496 B
Ruby
Raw Normal View History

2023-05-27 22:25:52 +05:30
# frozen_string_literal: true
module Sidebars
module UserProfile
module Menus
class StarredProjectsMenu < ::Sidebars::UserProfile::BaseMenu
override :link
def link
user_starred_projects_path(context.container)
end
override :title
def title
s_('UserProfile|Starred projects')
end
override :active_routes
def active_routes
{ path: 'users#starred' }
end
end
end
end
end