2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-07-15 00:57:58 +00:00
|
|
|
import { PrimaryColumn, Entity, Index, Column, ManyToOne, JoinColumn, OneToOne } from 'typeorm';
|
2022-02-27 02:07:39 +00:00
|
|
|
import { id } from '../id.js';
|
2023-07-15 00:57:58 +00:00
|
|
|
import { User } from './User.js';
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
@Entity()
|
|
|
|
export class RegistrationTicket {
|
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Index({ unique: true })
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 64,
|
|
|
|
})
|
|
|
|
public code: string;
|
2023-07-15 00:57:58 +00:00
|
|
|
|
|
|
|
@Column('timestamp with time zone', {
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public expiresAt: Date | null;
|
|
|
|
|
|
|
|
@Column('timestamp with time zone')
|
|
|
|
public createdAt: Date;
|
|
|
|
|
|
|
|
@ManyToOne(type => User, {
|
|
|
|
onDelete: 'CASCADE',
|
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public createdBy: User | null;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public createdById: User['id'] | null;
|
|
|
|
|
|
|
|
@OneToOne(type => User, {
|
|
|
|
onDelete: 'CASCADE',
|
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public usedBy: User | null;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public usedById: User['id'] | null;
|
|
|
|
|
|
|
|
@Column('timestamp with time zone', {
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public usedAt: Date | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 32,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public pendingUserId: string | null;
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|