1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/lib/user.js

22 lines
521 B
JavaScript
Raw Normal View History

'use strict';
const gravatar = require('gravatar');
2018-01-17 09:27:47 +01:00
const Joi = require('joi');
module.exports = class User {
constructor({ name, email, permissions, imageUrl } = {}) {
2018-01-17 09:27:47 +01:00
Joi.assert(
email,
Joi.string()
.email()
.required(),
'Email'
);
this.email = email;
this.name = name;
this.permissions = permissions;
this.imageUrl =
imageUrl || gravatar.url(email, { s: '42', d: 'retro' });
}
};