aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2015-12-30 17:49:41 -0800
committerTeddy Wing2015-12-30 17:49:41 -0800
commit5bb7a76bb95baef84d96d33eb50034fe51cdc0e4 (patch)
tree737e6ee9ee05991f93c35badff2b7bdaaa95fbcf
parentb55284210ee80e26b2b66406f30dfcce1c960f13 (diff)
downloadEvernote-Rails-Example-5bb7a76bb95baef84d96d33eb50034fe51cdc0e4.tar.bz2
routes.rb: Add route to notes index page
-rw-r--r--config/routes.rb2
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'