Added additional parameters to user creation method (#5496)

Treating picture, location and birthday similar to data.email as optional parameters to be passed to the create a user
v1.18.x
husseinwalli 8 years ago committed by psychobunny
parent ff09d6e0dd
commit 3876a88252

@ -28,10 +28,10 @@ module.exports = function (User) {
email: data.email || '', email: data.email || '',
joindate: timestamp, joindate: timestamp,
lastonline: timestamp, lastonline: timestamp,
picture: '', picture: data.picture || '',
fullname: data.fullname || '', fullname: data.fullname || '',
location: '', location: data.location || '',
birthday: '', birthday: data.birthday || '',
website: '', website: '',
signature: '', signature: '',
uploadedpicture: '', uploadedpicture: '',

Loading…
Cancel
Save