mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-18 09:04:44 -04:00
Format with Prettier 2
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
1ecf5def66
commit
3801b1b042
15 changed files with 36 additions and 94 deletions
|
@ -10,14 +10,10 @@ import { Note } from '../notes/note.entity';
|
|||
|
||||
@Entity()
|
||||
export class NoteGroupPermission {
|
||||
@ManyToOne(_ => Group, { primary: true })
|
||||
@ManyToOne((_) => Group, { primary: true })
|
||||
group: Group;
|
||||
|
||||
@ManyToOne(
|
||||
_ => Note,
|
||||
note => note.groupPermissions,
|
||||
{ primary: true },
|
||||
)
|
||||
@ManyToOne((_) => Note, (note) => note.groupPermissions, { primary: true })
|
||||
note: Note;
|
||||
|
||||
@Column()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue