Skip to content
Snippets Groups Projects

Added new Constructro to logn model and started using the new constructor in UserService

Merged Mads Lundegaard requested to merge Refactor_CreateUser into dev
2 files
+ 5
1
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -25,6 +25,10 @@ public class Login {
public Login() {
}
public Login(User user) {
this.username = user.getUsername();
}
public Login(User user, String passwordSalt , String hash) {
this.username = user.getUsername();
this.user = user;
Loading