Reorder help routes
This commit is contained in:
parent
bba88e84a9
commit
8a5b770c36
2 changed files with 14 additions and 14 deletions
|
@ -83,15 +83,15 @@ module ApplicationHelper
|
||||||
]
|
]
|
||||||
|
|
||||||
help_nav = [
|
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: "API Help", url: help_api_path },
|
||||||
{ label: "Markdown Help", url: help_markdown_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: "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: "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 = []
|
project_nav = []
|
||||||
|
|
|
@ -27,15 +27,15 @@ Gitlab::Application.routes.draw do
|
||||||
# Help
|
# Help
|
||||||
#
|
#
|
||||||
get 'help' => 'help#index'
|
get 'help' => 'help#index'
|
||||||
get 'help/permissions' => 'help#permissions'
|
|
||||||
get 'help/workflow' => 'help#workflow'
|
|
||||||
get 'help/api' => 'help#api'
|
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/markdown' => 'help#markdown'
|
||||||
get 'help/ssh' => 'help#ssh'
|
get 'help/permissions' => 'help#permissions'
|
||||||
get 'help/raketasks' => 'help#raketasks'
|
|
||||||
get 'help/public_access' => 'help#public_access'
|
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
|
# Public namespace
|
||||||
|
|
Loading…
Reference in a new issue