RailsCasts Pro episodes are now free!

Learn more or hide this

Karthik T's Profile

GitHub User: ktaragorn

Comments by Karthik T

Avatar

User creation needs to be modified slightly to play nicely with the new strong parameters in Rails 4. This error happens in 4.1.5 and might have been recent.

Issue and fix at stackoverflow

where(auth.slice(:provider, :uid)) needs to be
where(provider: auth.provider, uid: auth.uid)