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

56 lines
948 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()
@Index(['noteId', 'userId'], { unique: true })
export class MutedNote {
@PrimaryColumn(id())
public id: string;
@Index()
@Column({
...id(),
2021-12-09 15:58:30 +01:00
comment: 'The note ID.',
})
2023-01-13 05:40:33 +01:00
public noteId: Note["id"];
@ManyToOne(type => Note, {
2021-12-09 15:58:30 +01:00
onDelete: 'CASCADE',
})
@JoinColumn()
public note: Note | null;
@Index()
@Column({
...id(),
2021-12-09 15:58:30 +01:00
comment: 'The user ID.',
})
2023-01-13 05:40:33 +01:00
public userId: User["id"];
@ManyToOne(type => User, {
2021-12-09 15:58:30 +01:00
onDelete: 'CASCADE',
})
@JoinColumn()
public user: User | null;
/**
*
*/
@Index()
@Column('enum', {
enum: mutedNoteReasons,
2021-12-09 15:58:30 +01:00
comment: 'The reason of the MutedNote.',
})
public reason: typeof mutedNoteReasons[number];
}