welcome page

This commit is contained in:
Athou
2014-08-09 16:07:24 +02:00
parent 33b683d037
commit bbf04c4687
10 changed files with 139 additions and 13 deletions

View File

@@ -33,7 +33,7 @@ public class UserService {
public Optional<User> login(String name, String password) {
if (name == null || password == null) {
return null;
return Optional.absent();
}
User user = userDAO.findByName(name);