debian-mirror-gitlab/lib/sidebars/groups/super_sidebar_menus/plan_menu.rb

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

20 lines
322 B
Ruby
Raw Normal View History

2023-05-27 22:25:52 +05:30
# frozen_string_literal: true
module Sidebars
module Groups
module SuperSidebarMenus
class PlanMenu < ::Sidebars::Menu
override :title
def title
_('Plan')
end
override :sprite_icon
def sprite_icon
'planning'
end
end
end
end
end