Add post and tag review workflow

This commit is contained in:
Tim
2025-07-11 14:04:33 +08:00
parent a991b20f9c
commit 9a5a1df420
13 changed files with 192 additions and 23 deletions

View File

@@ -10,6 +10,8 @@ public enum NotificationType {
COMMENT_REPLY,
/** Someone reacted to your post or comment */
REACTION,
/** A new post is waiting for review */
POST_REVIEW_REQUEST,
/** Your post under review was approved or rejected */
POST_REVIEWED,
/** A subscribed post received a new comment */

View File

@@ -26,4 +26,7 @@ public class Tag {
@Column(name = "description", nullable = false)
private String description;
@Column(nullable = false)
private boolean approved = true;
}