Skip to content

Commit

Permalink
fix(before_filter): revert change to sign_in bypass to last stable
Browse files Browse the repository at this point in the history
  • Loading branch information
booleanbetrayal committed Oct 30, 2015
1 parent 4630485 commit e0b4dff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def set_user_by_token(mapping=nil)
user = uid && rc.find_by_uid(uid)

if user && user.valid_token?(@token, @client_id)
sign_in(:user, user, store: false, bypass: false)
sign_in(:user, user, store: false, bypass: true)
return @resource = user
else
# zero all values previously set values
Expand Down

0 comments on commit e0b4dff

Please sign in to comment.