2023-07-27 07:31:52 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2020-05-10 11:42:31 +02:00
|
|
|
import { PrimaryColumn, Entity, Index, Column } from 'typeorm';
|
2022-02-27 03:07:39 +01:00
|
|
|
import { id } from '../id.js';
|
2020-05-10 11:42:31 +02:00
|
|
|
|
2023-08-16 10:51:28 +02:00
|
|
|
@Entity('relay')
|
|
|
|
export class MiRelay {
|
2020-05-10 11:42:31 +02:00
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Index({ unique: true })
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 512, nullable: false,
|
|
|
|
})
|
|
|
|
public inbox: string;
|
|
|
|
|
|
|
|
@Column('enum', {
|
|
|
|
enum: ['requesting', 'accepted', 'rejected'],
|
|
|
|
})
|
|
|
|
public status: 'requesting' | 'accepted' | 'rejected';
|
|
|
|
}
|