Files
GKNB_MSTM071/Backend/harmadik gyakorlat_minta/src/domain/models/User.js
T
2026-03-04 20:02:39 +01:00

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;
}
}