diff options
author | Riyad Preukschas <riyad@informatik.uni-bremen.de> | 2013-01-19 01:34:11 +0100 |
---|---|---|
committer | Riyad Preukschas <riyad@informatik.uni-bremen.de> | 2013-01-19 15:26:23 +0100 |
commit | 8a5b770c3669f91d1b6da65a1f95272091479293 (patch) | |
tree | c474c30b13f85892f5e6d16f3eeebcef436b5994 /config/routes.rb | |
parent | bba88e84a96349889696df83b941edd28856f1c2 (diff) | |
download | gitlab-ce-8a5b770c3669f91d1b6da65a1f95272091479293.tar.gz |
Reorder help routes
Diffstat (limited to 'config/routes.rb')
-rw-r--r-- | config/routes.rb | 18 |
1 files changed, 9 insertions, 9 deletions
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 |