From f36e13658fdd37050f31643e70eb636c31ff4aff Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Fri, 9 Jan 2015 13:06:17 -0300 Subject: [PATCH] Remove credentials filtering when logging in after registering --- lib/actions/auth.coffee | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/actions/auth.coffee b/lib/actions/auth.coffee index 975d117b..8feb300c 100644 --- a/lib/actions/auth.coffee +++ b/lib/actions/auth.coffee @@ -36,7 +36,6 @@ exports.signup = -> return callback(error, credentials) (credentials, callback) -> - credentials = _.omit(credentials, 'email') resin.auth.login(credentials, callback) ], errors.handle)