hedgedoc/src/notes/author-color.entity.ts

30 lines
517 B
TypeScript
Raw Normal View History

/*
* SPDX-FileCopyrightText: 2020 The HedgeDoc developers (see AUTHORS file)
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { Column, Entity, ManyToOne } from 'typeorm/index';
import { User } from '../users/user.entity';
import { Note } from './note.entity';
@Entity()
export class AuthorColor {
@ManyToOne(
_ => Note,
note => note.authorColors,
{
primary: true,
},
)
note: Note;
@ManyToOne(_ => User, {
primary: true,
})
user: User;
@Column()
color: string;
}