31 lines
765 B
TypeScript
31 lines
765 B
TypeScript
import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm";
|
|
import { BaseClass } from "./BaseClass";
|
|
|
|
@Entity("recipients")
|
|
export class Recipient extends BaseClass {
|
|
@Column()
|
|
@RelationId((recipient: Recipient) => recipient.channel)
|
|
channel_id: string;
|
|
|
|
@JoinColumn({ name: "channel_id" })
|
|
@ManyToOne(() => require("./Channel").Channel, {
|
|
onDelete: "CASCADE",
|
|
})
|
|
channel: import("./Channel").Channel;
|
|
|
|
@Column()
|
|
@RelationId((recipient: Recipient) => recipient.user)
|
|
user_id: string;
|
|
|
|
@JoinColumn({ name: "user_id" })
|
|
@ManyToOne(() => require("./User").User, {
|
|
onDelete: "CASCADE",
|
|
})
|
|
user: import("./User").User;
|
|
|
|
@Column({ default: false })
|
|
closed: boolean;
|
|
|
|
// TODO: settings/mute/nick/added at/encryption keys/read_state
|
|
}
|