token = ok

This commit is contained in:
Thomas Cardon 2022-02-28 15:30:49 +01:00
parent c8d9cd4db8
commit 820aabcaa1
5 changed files with 22 additions and 10 deletions

View file

@ -46,6 +46,18 @@ public class Personne {
public Personne(String nom, String prenom, String email, String password, List<EnumRole> roleList) {
super();
this.nom = nom;
this.prenom = prenom;
this.email = email;
this.password = password;
this.roleList = roleList;
}
public Personne(String email, String password, List<EnumRole> roleList) {
super();
this.email = email;