Correct serialized name
This commit is contained in:
parent
3a4d879309
commit
3460c68763
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user