summaryrefslogtreecommitdiff
path: root/lib/sidebars/projects/menus/scope_menu.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sidebars/projects/menus/scope_menu.rb')
-rw-r--r--lib/sidebars/projects/menus/scope_menu.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/sidebars/projects/menus/scope_menu.rb b/lib/sidebars/projects/menus/scope_menu.rb
index 1d1cf11b271..1cd0218d4ac 100644
--- a/lib/sidebars/projects/menus/scope_menu.rb
+++ b/lib/sidebars/projects/menus/scope_menu.rb
@@ -13,6 +13,32 @@ module Sidebars
def title
context.project.name
end
+
+ override :active_routes
+ def active_routes
+ { path: 'projects#show' }
+ end
+
+ override :extra_container_html_options
+ def extra_container_html_options
+ return {} if Feature.disabled?(:sidebar_refactor, context.current_user, default_enabled: :yaml)
+
+ {
+ class: 'shortcuts-project rspec-project-link'
+ }
+ end
+
+ override :extra_nav_link_html_options
+ def extra_nav_link_html_options
+ return {} if Feature.disabled?(:sidebar_refactor, context.current_user, default_enabled: :yaml)
+
+ { class: 'context-header' }
+ end
+
+ override :render?
+ def render?
+ true
+ end
end
end
end