diff options
| author | Alban Peignier | 2017-09-30 14:17:28 +0200 | 
|---|---|---|
| committer | Alban Peignier | 2017-09-30 14:46:09 +0200 | 
| commit | fda2b7b07349fd20cc70d68bf1544a7f51841f70 (patch) | |
| tree | 87772ddf673bcee1861ad5d54d9b26cfaed7fea9 /config/routes.rb | |
| parent | 1ae15e06f2a56f9a83d670ad9c785a74cb6af43e (diff) | |
| download | chouette-core-fda2b7b07349fd20cc70d68bf1544a7f51841f70.tar.bz2 | |
Create DashboardController with STIF implementation. Refs #4655
Diffstat (limited to 'config/routes.rb')
| -rw-r--r-- | config/routes.rb | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/config/routes.rb b/config/routes.rb index cc3896da9..b9e318f91 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,6 +1,8 @@  require 'sidekiq/web'  ChouetteIhm::Application.routes.draw do +  resource :dashboard +    resources :workbenches, only: [:show, :index] do      delete :referentials, on: :member, action: :delete_referentials      resources :imports do @@ -216,7 +218,7 @@ ChouetteIhm::Application.routes.draw do      end    end -  root :to => "workbenches#index" +  root :to => "dashboards#show"    get '/help/(*slug)' => 'help#show' | 
