Add bot flag to users and surface in comments

This commit is contained in:
Tim
2025-10-28 19:49:33 +08:00
parent 8db928b9a8
commit 512e5623e1
12 changed files with 55 additions and 4 deletions

View File

@@ -62,6 +62,9 @@ public class User {
@Column(nullable = false)
private Role role = Role.USER;
@Column(name = "is_bot", nullable = false)
private boolean bot = false;
@Enumerated(EnumType.STRING)
private MedalType displayMedal;