diff options
| author | Teddy Wing | 2015-12-30 17:49:41 -0800 |
|---|---|---|
| committer | Teddy Wing | 2015-12-30 17:49:41 -0800 |
| commit | 5bb7a76bb95baef84d96d33eb50034fe51cdc0e4 (patch) | |
| tree | 737e6ee9ee05991f93c35badff2b7bdaaa95fbcf | |
| parent | b55284210ee80e26b2b66406f30dfcce1c960f13 (diff) | |
| download | Evernote-Rails-Example-5bb7a76bb95baef84d96d33eb50034fe51cdc0e4.tar.bz2 | |
routes.rb: Add route to notes index page
| -rw-r--r-- | config/routes.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index 70acae5..f0ab676 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,6 +1,8 @@ Rails.application.routes.draw do root 'home#index' + get 'notes' => 'notes#index' + # get '/auth/evernote' => 'auth/evernote#index' get '/auth/evernote/callback' => 'sessions#create' |
