v3: correctly using SITE_NAME across the app, added notifications on comments
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 44s

This commit is contained in:
khannurien
2026-04-08 20:12:30 +00:00
parent 856511777c
commit ed7695663e
16 changed files with 185 additions and 59 deletions

View File

@@ -617,7 +617,8 @@ export type NotificationType =
| "user_dump_posted"
| "playlist_dump_added"
| "dump_upvoted"
| "user_mentioned";
| "user_mentioned"
| "dump_commented";
export interface PlaylistFollowedData {
followerId: string;
@@ -661,13 +662,22 @@ export interface UserMentionedData {
dumpId?: string;
}
export interface DumpCommentedData {
commenterId: string;
commenterUsername: string;
commentId: string;
dumpId: string;
dumpTitle: string;
}
export type NotificationData =
| PlaylistFollowedData
| UserFollowedData
| UserDumpPostedData
| PlaylistDumpAddedData
| DumpUpvotedData
| UserMentionedData;
| UserMentionedData
| DumpCommentedData;
export interface Notification {
id: string;