diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index fefcb01884f..6478982cdad 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -83,15 +83,15 @@ module ApplicationHelper ] help_nav = [ - { label: "Workflow Help", url: help_workflow_path }, - { label: "Permissions Help", url: help_permissions_path }, - { label: "Web Hooks Help", url: help_web_hooks_path }, - { label: "System Hooks Help", url: help_system_hooks_path }, { label: "API Help", url: help_api_path }, { label: "Markdown Help", url: help_markdown_path }, + { label: "Permissions Help", url: help_permissions_path }, { label: "Public Access Help", url: help_public_access_path }, + { label: "Rake Tasks Help", url: help_raketasks_path }, { label: "SSH Keys Help", url: help_ssh_path }, - { label: "Gitlab Rake Tasks Help", url: help_raketasks_path }, + { label: "System Hooks Help", url: help_system_hooks_path }, + { label: "Web Hooks Help", url: help_web_hooks_path }, + { label: "Workflow Help", url: help_workflow_path }, ] project_nav = [] diff --git a/config/routes.rb b/config/routes.rb index 0ec6d9b76f1..00ff3f63752 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -26,16 +26,16 @@ Gitlab::Application.routes.draw do # # Help # - get 'help' => 'help#index' - get 'help/permissions' => 'help#permissions' - get 'help/workflow' => 'help#workflow' - get 'help/api' => 'help#api' - get 'help/web_hooks' => 'help#web_hooks' - get 'help/system_hooks' => 'help#system_hooks' - get 'help/markdown' => 'help#markdown' - get 'help/ssh' => 'help#ssh' - get 'help/raketasks' => 'help#raketasks' + get 'help' => 'help#index' + get 'help/api' => 'help#api' + get 'help/markdown' => 'help#markdown' + get 'help/permissions' => 'help#permissions' get 'help/public_access' => 'help#public_access' + get 'help/raketasks' => 'help#raketasks' + get 'help/ssh' => 'help#ssh' + get 'help/system_hooks' => 'help#system_hooks' + get 'help/web_hooks' => 'help#web_hooks' + get 'help/workflow' => 'help#workflow' # # Public namespace