aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorTeddy Wing2015-12-30 17:30:38 -0800
committerTeddy Wing2015-12-30 17:45:28 -0800
commit2051cd66c9c02777e2eff1789ce2d1f76dd2e7e9 (patch)
treee45562a8f6a9de2331007bf5516304d9511eba77 /config
parent5519e0fa377345b7f85a1f5c4f8eed2117931581 (diff)
downloadEvernote-Rails-Example-2051cd66c9c02777e2eff1789ce2d1f76dd2e7e9.tar.bz2
Get rid of 'evernote-oauth' and install 'omniauth'
Removing the 'evernote-oauth' gem because I couldn't figure out how to get it to work. Decided to go with OmniAuth to handle OAuth because I had a good experience with it in the past and figured it would be simpler to set up. Also installing the 'omniauth-evernote' provider to enable authentication with Evernote. Comment out the route I had created to `auth/evernote#index` for 'evernote-oauth'.
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb
index cb4962f..a729a7f 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -1,7 +1,7 @@
Rails.application.routes.draw do
root 'home#index'
- get '/auth/evernote' => 'auth/evernote#index'
+ # get '/auth/evernote' => 'auth/evernote#index'
# The priority is based upon order of creation: first created -> highest priority.
# See how all your routes lay out with "rake routes".