implemented transfer of list ownership. this resolves #4

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2024-06-07 14:06:27 +02:00
parent 1b61004238
commit fa265f14b2
4 changed files with 73 additions and 10 deletions

View File

@@ -326,4 +326,9 @@ public class User {
public String token() {
return token;
}
@Override
public String toString() {
return name == null ? email : name;
}
}