4c2f7c64cc
* feat: per-user renote muting From FoundKey/c414f24a2c https://akkoma.dev/FoundKeyGang/FoundKey * Update ja-JP.yml * Delete renote-muting.ts * rename * fix ids * lint * fix * Update CHANGELOG.md * リノートをミュートしたユーザー一覧を見れるように * 🎨 * add test * fix test --------- Co-authored-by: Hélène <pleroma-dev@helene.moe>
42 lines
805 B
TypeScript
42 lines
805 B
TypeScript
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
|
import { id } from '../id.js';
|
|
import { User } from './User.js';
|
|
|
|
@Entity()
|
|
@Index(['muterId', 'muteeId'], { unique: true })
|
|
export class RenoteMuting {
|
|
@PrimaryColumn(id())
|
|
public id: string;
|
|
|
|
@Index()
|
|
@Column('timestamp with time zone', {
|
|
comment: 'The created date of the Muting.',
|
|
})
|
|
public createdAt: Date;
|
|
|
|
@Index()
|
|
@Column({
|
|
...id(),
|
|
comment: 'The mutee user ID.',
|
|
})
|
|
public muteeId: User['id'];
|
|
|
|
@ManyToOne(type => User, {
|
|
onDelete: 'CASCADE',
|
|
})
|
|
@JoinColumn()
|
|
public mutee: User | null;
|
|
|
|
@Index()
|
|
@Column({
|
|
...id(),
|
|
comment: 'The muter user ID.',
|
|
})
|
|
public muterId: User['id'];
|
|
|
|
@ManyToOne(type => User, {
|
|
onDelete: 'CASCADE',
|
|
})
|
|
@JoinColumn()
|
|
public muter: User | null;
|
|
}
|