Removed unusued code and images

This commit is contained in:
Sahat Yalkabov
2013-12-19 13:16:32 -05:00
parent b98bf72107
commit efa84dba1b
6 changed files with 0 additions and 20 deletions

View File

@@ -154,25 +154,6 @@ exports.postSignup = function(req, res) {
});
};
/**
* POST /signup/available
* Checks if current username is available
*/
exports.postAvailability = function(req, res) {
User.findOne({ username: req.body.username }, function(err, user) {
if (user) {
// unavailable
// has-error
return;
} else {
// username is available
// has-success
return;
}
});
};
/**
* GET /account/unlink/:provider
*/