mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
allow import during registration
This commit is contained in:
@@ -8,6 +8,7 @@ public class RegistrationRequest implements Serializable {
|
||||
private String name;
|
||||
private String password;
|
||||
private String email;
|
||||
private boolean googleImport = true;
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
@@ -33,4 +34,12 @@ public class RegistrationRequest implements Serializable {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
public boolean isGoogleImport() {
|
||||
return googleImport;
|
||||
}
|
||||
|
||||
public void setGoogleImport(boolean googleImport) {
|
||||
this.googleImport = googleImport;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user