mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-31 15:18:38 -04:00
Update Note entity
We now use the new permissions split in users and groups. Also the note now knows the colors of its authors. Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
1121ed9507
commit
67e60a3c37
4 changed files with 47 additions and 71 deletions
|
@ -1,12 +1,17 @@
|
|||
import { Column, ManyToOne } from 'typeorm/index';
|
||||
import { Column, Entity, ManyToOne } from 'typeorm/index';
|
||||
import { Group } from '../groups/group.entity';
|
||||
import { Note } from '../notes/note.entity';
|
||||
|
||||
@Entity()
|
||||
export class NoteGroupPermission {
|
||||
@ManyToOne(_ => Group)
|
||||
@ManyToOne(_ => Group, { primary: true })
|
||||
group: Group;
|
||||
|
||||
@ManyToOne(_ => Note)
|
||||
@ManyToOne(
|
||||
_ => Note,
|
||||
note => note.groupPermissions,
|
||||
{ primary: true },
|
||||
)
|
||||
note: Note;
|
||||
|
||||
@Column()
|
||||
|
|
|
@ -1,12 +1,17 @@
|
|||
import { Column, ManyToOne } from 'typeorm/index';
|
||||
import { Column, Entity, ManyToOne } from 'typeorm/index';
|
||||
import { Note } from '../notes/note.entity';
|
||||
import { User } from '../users/user.entity';
|
||||
|
||||
@Entity()
|
||||
export class NoteUserPermission {
|
||||
@ManyToOne(_ => User)
|
||||
@ManyToOne(_ => User, { primary: true })
|
||||
user: User;
|
||||
|
||||
@ManyToOne(_ => Note)
|
||||
@ManyToOne(
|
||||
_ => Note,
|
||||
note => note.userPermissions,
|
||||
{ primary: true },
|
||||
)
|
||||
note: Note;
|
||||
|
||||
@Column()
|
||||
|
|
|
@ -1,4 +1,11 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { NoteGroupPermission } from './note-group-permission.entity';
|
||||
import { NoteUserPermission } from './note-user-permission.entity';
|
||||
|
||||
@Module({})
|
||||
@Module({
|
||||
imports: [
|
||||
TypeOrmModule.forFeature([NoteUserPermission, NoteGroupPermission]),
|
||||
],
|
||||
})
|
||||
export class PermissionsModule {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue