diff options
author | Riyad Preukschas <riyad@informatik.uni-bremen.de> | 2013-01-19 01:32:38 +0100 |
---|---|---|
committer | Riyad Preukschas <riyad@informatik.uni-bremen.de> | 2013-01-19 15:24:51 +0100 |
commit | 8db80f1f6d5cf58ed7490803a38b19579496b7eb (patch) | |
tree | 3c2bca182ac7ff7dc963ce9e3c5acf71526cbe6c | |
parent | 359703c6968526b44bd3e5b089db1db667781a7c (diff) | |
download | gitlab-ce-8db80f1f6d5cf58ed7490803a38b19579496b7eb.tar.gz |
Rename help#public_area to help#public_access
-rw-r--r-- | app/helpers/application_helper.rb | 1 | ||||
-rw-r--r-- | app/views/help/public_access.html.haml (renamed from app/views/help/public_area.html.haml) | 2 | ||||
-rw-r--r-- | config/routes.rb | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index fe6fe94c9ac..fefcb01884f 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -89,6 +89,7 @@ module ApplicationHelper { label: "System Hooks Help", url: help_system_hooks_path }, { label: "API Help", url: help_api_path }, { label: "Markdown Help", url: help_markdown_path }, + { label: "Public Access Help", url: help_public_access_path }, { label: "SSH Keys Help", url: help_ssh_path }, { label: "Gitlab Rake Tasks Help", url: help_raketasks_path }, ] diff --git a/app/views/help/public_area.html.haml b/app/views/help/public_access.html.haml index a7a86e92396..941ab7b91bf 100644 --- a/app/views/help/public_area.html.haml +++ b/app/views/help/public_access.html.haml @@ -1,4 +1,4 @@ -%h3.page_title Public Area +%h3.page_title Public Access .back_link = link_to help_path do ← to index diff --git a/config/routes.rb b/config/routes.rb index 446817356e8..0ec6d9b76f1 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -35,7 +35,7 @@ Gitlab::Application.routes.draw do get 'help/markdown' => 'help#markdown' get 'help/ssh' => 'help#ssh' get 'help/raketasks' => 'help#raketasks' - get 'help/public_area' => 'help#public_area' + get 'help/public_access' => 'help#public_access' # # Public namespace |