21 lines
429 B
JavaScript
21 lines
429 B
JavaScript
export class User {
|
|
constructor(data) {
|
|
this.id = data.id;
|
|
this.email = data.email;
|
|
this.username = data.username;
|
|
this.password = data.password;
|
|
this.role = data.role;
|
|
this.createdAt = data.createdAt;
|
|
this.updatedAt = data.updatedAt;
|
|
}
|
|
|
|
isAdmin() {
|
|
return this.role === 'ADMIN';
|
|
}
|
|
|
|
toJSON() {
|
|
const { password, ...userWithoutPassword } = this;
|
|
return userWithoutPassword;
|
|
}
|
|
}
|