style: fix linting issues met Prettier
This commit is contained in:
parent
205a4addad
commit
7f782915b6
12 changed files with 30 additions and 32 deletions
|
@ -16,14 +16,14 @@ export class Group {
|
|||
|
||||
@ManyToOne({
|
||||
entity: () => Assignment,
|
||||
primary: true
|
||||
primary: true,
|
||||
})
|
||||
assignment!: Assignment;
|
||||
|
||||
@ManyToMany({
|
||||
entity: () => Student,
|
||||
owner: true,
|
||||
inversedBy: "groups"
|
||||
inversedBy: 'groups',
|
||||
})
|
||||
members: Collection<Student> = new Collection<Student>(this);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue