Kyle Birns

Results 1 comments of Kyle Birns
trafficstars

If anyone is having issues with the findOrCreate this worked for me: User.findOrCreate({ where: {facebookId}, defaults: {name, email, avatar} }) .then(([user]) => { return cb(null, user) }) .catch(cb) And make...