feat: sensitive word

This commit is contained in:
syuilo
2023-03-13 17:37:22 +09:00
parent b18df999cd
commit 7f16b50e73
10 changed files with 122 additions and 1 deletions

View File

@@ -67,6 +67,11 @@ export class Meta {
})
public blockedHosts: string[];
@Column('varchar', {
length: 1024, array: true, default: '{}',
})
public sensitiveWords: string[];
@Column('varchar', {
length: 1024,
nullable: true,