access modifiers and constructors fix
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
package com.plannaplan.services;
|
||||
|
||||
import java.util.Optional;
|
||||
import java.util.UUID;
|
||||
|
||||
import com.plannaplan.entities.User;
|
||||
@ -38,7 +39,7 @@ public class UserService {
|
||||
|
||||
}
|
||||
|
||||
public User getByToken(String token) {
|
||||
public Optional<User> getByToken(String token) {
|
||||
return this.repo.getByToken(token);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user