Merge pull request #1672 from shivpkumar/shiv/add-session-to-after-create-account

Add 'session' to auth hash in OAuth complete method
This commit is contained in:
Régis Hanol 2013-11-19 10:16:31 -08:00
commit a7bbc93b9a
1 changed files with 1 additions and 0 deletions

View File

@ -32,6 +32,7 @@ class Users::OmniauthCallbacksController < ApplicationController
def complete
auth = request.env["omniauth.auth"]
auth[:session] = session
authenticator = self.class.find_authenticator(params[:provider])