feat(follow): add host option for notifications and update follow entity

This commit is contained in:
2025-11-03 11:45:42 +01:00
parent d417e7334b
commit a593e05f5c
4 changed files with 37 additions and 18 deletions

View File

@@ -8,6 +8,9 @@ export class Follow {
@Column()
user_discord: string;
@Column()
host: string;
@Column({default: false})
enable: boolean;
}