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

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

25 lines
512 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 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