diff options
| author | Teddy Wing | 2015-12-31 01:18:58 -0800 |
|---|---|---|
| committer | Teddy Wing | 2015-12-31 01:18:58 -0800 |
| commit | 4b945cc8801549990fde0b4dfc1c39e20d9b23c3 (patch) | |
| tree | 14c064c0ab8afa3ef01454e43b5b2f301f6665a3 /app/controllers | |
| parent | 51b79d389c694441deff4489be474fd87dddcaf9 (diff) | |
| download | Evernote-Rails-Example-4b945cc8801549990fde0b4dfc1c39e20d9b23c3.tar.bz2 | |
Remove Auth::EvernoteController
No longer used now that we're authenticating with OmniAuth.
Diffstat (limited to 'app/controllers')
| -rw-r--r-- | app/controllers/auth/evernote_controller.rb | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/app/controllers/auth/evernote_controller.rb b/app/controllers/auth/evernote_controller.rb deleted file mode 100644 index c581e31..0000000 --- a/app/controllers/auth/evernote_controller.rb +++ /dev/null @@ -1,12 +0,0 @@ -class Auth::EvernoteController < ApplicationController - def index - client = EvernoteOAuth::Client.new - request_token = client.request_token(:oauth_callback => '/auth/evernote/callback') - request_token.authorize_url - @access_token = request_token.get_access_token(oauth_verifier: params[:oauth_verifier]) - end - - def callback - render 'le callback' - end -end |
