Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorMarin Jankovski <maxlazio@gmail.com>2015-02-12 04:34:41 +0300
committerMarin Jankovski <maxlazio@gmail.com>2015-02-12 04:55:33 +0300
commit6b4ddf2cc13eda5dd6df64bab6f95f88d64cd2fa (patch)
tree3b9b008d4528ce1dcd2b15ac144548a3f9f26ecd /config
parent09d3d351a1a80032c4e9bf185a15ff95819a4da0 (diff)
Add admin services templates.
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/config/routes.rb b/config/routes.rb
index c8a8415ae77..65786d83566 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -51,7 +51,7 @@ Gitlab::Application.routes.draw do
end
get '/s/:username' => 'snippets#user_index', as: :user_snippets, constraints: { username: /.*/ }
-
+
#
# Import
#
@@ -68,8 +68,8 @@ Gitlab::Application.routes.draw do
get :jobs
end
end
-
-
+
+
#
# Explore area
@@ -131,7 +131,9 @@ Gitlab::Application.routes.draw do
end
end
- resource :application_settings, only: [:show, :update]
+ resource :application_settings, only: [:show, :update] do
+ resources :services
+ end
root to: 'dashboard#index'
end