iceshrimp-161sh/packages/backend/src/models/entities/muted-note.ts

56 lines
952 B
TypeScript
Raw Normal View History

2023-01-13 05:40:33 +01:00
import {
Entity,
Index,
JoinColumn,
Column,
ManyToOne,
PrimaryColumn,
} from "typeorm";
import { Note } from "./note.js";
import { User } from "./user.js";
import { id } from "../id.js";
import { mutedNoteReasons } from "../../types.js";
@Entity()
2023-05-29 18:31:02 +02:00
@Index(["noteId", "userId"], { unique: true })
export class MutedNote {
@PrimaryColumn(id())
public id: string;
@Index()
@Column({
...id(),
2023-05-29 18:31:02 +02:00
comment: "The note ID.",
})
2023-01-13 05:40:33 +01:00
public noteId: Note["id"];
2023-05-29 18:31:02 +02:00
@ManyToOne((type) => Note, {
onDelete: "CASCADE",
})
@JoinColumn()
public note: Note | null;
@Index()
@Column({
...id(),
2023-05-29 18:31:02 +02:00
comment: "The user ID.",
})
2023-01-13 05:40:33 +01:00
public userId: User["id"];
2023-05-29 18:31:02 +02:00
@ManyToOne((type) => User, {
onDelete: "CASCADE",
})
@JoinColumn()
public user: User | null;
/**
*
*/
@Index()
2023-05-29 18:31:02 +02:00
@Column("enum", {
enum: mutedNoteReasons,
2023-05-29 18:31:02 +02:00
comment: "The reason of the MutedNote.",
})
public reason: typeof mutedNoteReasons[number];
}