3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-17 23:25:02 +00:00

Add support for hiding cases with !hidecase

This commit is contained in:
Dragory 2019-01-13 17:56:14 +02:00
parent 1ddbb379c5
commit 799ac2d502
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[];
}