mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-23 15:49:10 +00:00
31 lines
425 B
TypeScript
31 lines
425 B
TypeScript
import { Column, Entity, Index } from 'typeorm';
|
|
import BaseModel from './BaseModel';
|
|
import User from './User';
|
|
import Project from './Project';
|
|
|
|
@Entity({
|
|
name: "SslVerificationChallenge"
|
|
})
|
|
export default class SslVerificationChallenge extends BaseModel {
|
|
|
|
@Column()
|
|
token!: string;
|
|
|
|
@Column()
|
|
keyAuthorization!: string;
|
|
|
|
@Column()
|
|
challengeUrl!: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|