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

Run prettier and check tslint on entire codebase

Mainly to run these checks for the recent pull requests.
This commit is contained in:
Dragory 2020-01-12 11:47:54 +02:00
parent 1c0f69e80a
commit 3d40783ae1
15 changed files with 89 additions and 60 deletions

View file

@ -15,7 +15,10 @@ export class CaseNote {
@Column() created_at: string;
@ManyToOne(type => Case, theCase => theCase.notes)
@ManyToOne(
type => Case,
theCase => theCase.notes,
)
@JoinColumn({ name: "case_id" })
case: Case;
}