2023-07-27 08:31:52 +03:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-03-08 01:56:09 +02:00
|
|
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
2023-09-20 05:33:36 +03:00
|
|
|
import { id } from './util/id.js';
|
2023-08-16 11:51:28 +03:00
|
|
|
import { MiUser } from './User.js';
|
2023-03-08 01:56:09 +02:00
|
|
|
|
2023-08-16 11:51:28 +03:00
|
|
|
@Entity('renote_muting')
|
2023-03-08 01:56:09 +02:00
|
|
|
@Index(['muterId', 'muteeId'], { unique: true })
|
2023-08-16 11:51:28 +03:00
|
|
|
export class MiRenoteMuting {
|
2023-03-08 01:56:09 +02:00
|
|
|
@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.',
|
|
|
|
})
|
2023-08-16 11:51:28 +03:00
|
|
|
public muteeId: MiUser['id'];
|
2023-03-08 01:56:09 +02:00
|
|
|
|
2023-08-16 11:51:28 +03:00
|
|
|
@ManyToOne(type => MiUser, {
|
2023-03-08 01:56:09 +02:00
|
|
|
onDelete: 'CASCADE',
|
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 11:51:28 +03:00
|
|
|
public mutee: MiUser | null;
|
2023-03-08 01:56:09 +02:00
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
comment: 'The muter user ID.',
|
|
|
|
})
|
2023-08-16 11:51:28 +03:00
|
|
|
public muterId: MiUser['id'];
|
2023-03-08 01:56:09 +02:00
|
|
|
|
2023-08-16 11:51:28 +03:00
|
|
|
@ManyToOne(type => MiUser, {
|
2023-03-08 01:56:09 +02:00
|
|
|
onDelete: 'CASCADE',
|
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 11:51:28 +03:00
|
|
|
public muter: MiUser | null;
|
2023-03-08 01:56:09 +02:00
|
|
|
}
|