Add support for hiding cases with !hidecase

This commit is contained in:
Dragory 2019-01-13 17:56:14 +02:00
parent ab71481b8f
commit 8de31844d5
6 changed files with 105 additions and 13 deletions

View file

@ -23,6 +23,8 @@ export class Case {
@Column() created_at: string;
@Column() is_hidden: boolean;
@OneToMany(type => CaseNote, note => note.case)
notes: CaseNote[];
}