debian-mirror-gitlab/lib/sidebars/user_profile/menus/contributed_projects_menu.rb
2023-05-27 22:25:52 +05:30

24 lines
512 B
Ruby

# frozen_string_literal: true
module Sidebars
module UserProfile
module Menus
class ContributedProjectsMenu < ::Sidebars::UserProfile::BaseMenu
override :link
def link
user_contributed_projects_path(context.container)
end
override :title
def title
s_('UserProfile|Contributed projects')
end
override :active_routes
def active_routes
{ path: 'users#contributed' }
end
end
end
end
end