Skip to content
Snippets Groups Projects
Commit ec311922 authored by Michael Simon's avatar Michael Simon
Browse files

NO_STORY also throw exception on illegal argument

parent 50d73122
No related branches found
No related tags found
No related merge requests found
......@@ -82,6 +82,11 @@ public class UnlinkAndDeleteAccountBean implements Serializable {
public UserEntity getUser() {
if (user == null) {
user = userService.fetch(id);
if (user == null) {
throw new IllegalArgumentException("not authorized");
}
if (! user.getIdentity().equals(getIdentity())) {
throw new IllegalArgumentException("not authorized");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment