Readme: Removed 'email' as possible means of authenticating users

Project: http://git-wip-us.apache.org/repos/asf/usergrid-nodejs/repo
Commit: http://git-wip-us.apache.org/repos/asf/usergrid-nodejs/commit/fa4316f8
Tree: http://git-wip-us.apache.org/repos/asf/usergrid-nodejs/tree/fa4316f8
Diff: http://git-wip-us.apache.org/repos/asf/usergrid-nodejs/diff/fa4316f8

Branch: refs/heads/master
Commit: fa4316f894570bb238e4b45147b159fec8e44ac5
Parents: 131130a
Author: brandon <bran...@behemoth.ca>
Authored: Thu Feb 11 13:46:48 2016 -0800
Committer: brandon <bran...@behemoth.ca>
Committed: Thu Feb 11 13:46:48 2016 -0800

----------------------------------------------------------------------
 README.md | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/usergrid-nodejs/blob/fa4316f8/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index e630a3a..e0abd6e 100644
--- a/README.md
+++ b/README.md
@@ -293,7 +293,6 @@ Usergrid.authenticateApp(function(error, usergridResponse, 
token) {
 ```js
 Usergrid.authenticateUser({
     username: '<username>',
-    email: '<email-address>', // either username or email is required
     password: '<password>'
 }, function(error, usergridResponse, token) {
     // Usergrid.currentUser is set to the authenticated user and the token is 
stored within that context
@@ -305,7 +304,6 @@ If you want to utilize authenticateUser without setting as 
the current user, sim
 ```js
 Usergrid.authenticateUser({
     username: '<username>',
-    email: '<email-address>', // either username or email is required
     password: '<password>'
 }, false, function(error, usergridResponse, token) {
     

Reply via email to