Correct serialized name

This commit is contained in:
Umberto Furno 2019-11-13 16:31:26 +01:00
parent 3a4d879309
commit 3460c68763
1 changed files with 4 additions and 4 deletions

View File

@ -2,11 +2,11 @@ package wekan.wrapper.entity;
public class UserEmail {
public String getEmail() {
return email;
return address;
}
public void setEmail(String email) {
this.email = email;
this.address = email;
}
public boolean isVerified() {
@ -20,11 +20,11 @@ public class UserEmail {
@Override
public String toString() {
return "UserEmail{" +
"email='" + email + '\'' +
"adrress='" + address + '\'' +
", verified=" + verified +
'}';
}
private String email;
private String address;
private boolean verified;
}