feature_user #15

Manually merged
noemi3 merged 16 commits from feature_user into develop 2019-11-22 08:38:08 +00:00
Showing only changes of commit 3460c68763 - Show all commits

View File

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