diff options
author | Josh Frye <joshfng@gmail.com> | 2016-06-22 10:43:28 -0400 |
---|---|---|
committer | Josh Frye <joshfng@gmail.com> | 2016-06-28 21:35:42 -0400 |
commit | 82edef941406eef9e4be12341a064566ac848dce (patch) | |
tree | 8cd263d3c9c813c9f1fb3b23245b6f86fd0951b5 /config | |
parent | ebe21acc2a2f0a569e1e10314ac9407024becafb (diff) | |
download | gitlab-ce-82edef941406eef9e4be12341a064566ac848dce.tar.gz |
Show basic system info on admin panel. Closes #18886
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index e45293cdf7f..bdfb16a66bf 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -280,6 +280,7 @@ Rails.application.routes.draw do resource :logs, only: [:show] resource :health_check, controller: 'health_check', only: [:show] resource :background_jobs, controller: 'background_jobs', only: [:show] + resource :system_info, controller: 'system_info', only: [:show] resources :namespaces, path: '/projects', constraints: { id: /[a-zA-Z.0-9_\-]+/ }, only: [] do root to: 'projects#index', as: :projects |