Fail if profile already exists

This commit is contained in:
Esteban Ordano 2014-10-31 18:13:52 -03:00
commit 5a8c93284b

View file

@ -86,7 +86,7 @@ Identity.create = function(opts, cb) {
opts = _.extend({}, opts);
var iden = new Identity(opts);
iden.store(opts, function(err) {
iden.store(_.extend(opts, {failIfExists: true}), function(err) {
if (err) return cb(err);
return cb(null, iden);
});