add option to reject reports from an instance

This commit is contained in:
Hazel K 2024-10-05 22:01:55 -04:00
parent ac1e5a0fb5
commit 4da0d4be71
10 changed files with 88 additions and 1 deletions

View file

@ -158,7 +158,12 @@ export class MiInstance {
default: false,
})
public isNSFW: boolean;
@Column('boolean', {
default: false,
})
public rejectReports: boolean;
@Column('varchar', {
length: 16384, default: '',
})