Skip to content

Commit

Permalink
updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
Leveton committed Jul 1, 2012
1 parent 3c09766 commit a10a359
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions readme.md
Expand Up @@ -59,3 +59,19 @@ examples
app.delete('Foo', 'someId', function (err) { app.delete('Foo', 'someId', function (err) {
// nothing to see here // nothing to see here
}); });

### reset a password

parse.passwordReset(userEmail, function(err, response){
console.log(response);
});

### update User email

parse.updateUserEmail(objectId, email, function(err, response){
if (err) {
console.log(err);
} else {
console.log(response);
}
});

0 comments on commit a10a359

Please sign in to comment.