diff options
author | Marin Jankovski <maxlazio@gmail.com> | 2015-02-11 17:34:41 -0800 |
---|---|---|
committer | Marin Jankovski <maxlazio@gmail.com> | 2015-02-11 17:55:33 -0800 |
commit | 6b4ddf2cc13eda5dd6df64bab6f95f88d64cd2fa (patch) | |
tree | 3b9b008d4528ce1dcd2b15ac144548a3f9f26ecd /config/routes.rb | |
parent | 09d3d351a1a80032c4e9bf185a15ff95819a4da0 (diff) | |
download | gitlab-ce-6b4ddf2cc13eda5dd6df64bab6f95f88d64cd2fa.tar.gz |
Add admin services templates.
Diffstat (limited to 'config/routes.rb')
-rw-r--r-- | config/routes.rb | 10 |
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 |