added some comments

This commit is contained in:
2024-05-23 14:38:57 +02:00
parent 45ef17e3c2
commit 3def245e55
2 changed files with 25 additions and 6 deletions

View File

@@ -11,10 +11,12 @@ public class Routes {
@GetMapping("")
public JodelPost test() {
// TODO: remove dec post
JodelPost post = new JodelPost(100);
// calculate anonymous IDs for the post
post.anonymize(Optional.empty());
// return the post
return post;
}