Format with Prettier 2

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2021-01-06 23:48:53 +01:00
parent 1ecf5def66
commit 3801b1b042
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3
15 changed files with 36 additions and 94 deletions

View file

@ -56,19 +56,12 @@ export class Revision {
/**
* Note this revision belongs to.
*/
@ManyToOne(
_ => Note,
note => note.revisions,
{ onDelete: 'CASCADE' },
)
@ManyToOne((_) => Note, (note) => note.revisions, { onDelete: 'CASCADE' })
note: Note;
/**
* All authorship objects which are used in the revision.
*/
@ManyToMany(
_ => Authorship,
authorship => authorship.revisions,
)
@ManyToMany((_) => Authorship, (authorship) => authorship.revisions)
@JoinTable()
authorships: Authorship[];