2022-04-27 19:38:55 +00:00
|
|
|
import { Column, Entity, Index } from 'typeorm';
|
2022-04-26 20:34:05 +00:00
|
|
|
import BaseModel from './BaseModel';
|
2022-04-27 08:22:16 +00:00
|
|
|
import User from './User';
|
|
|
|
import Project from './Project';
|
2022-04-27 19:38:55 +00:00
|
|
|
import StatusPage from './StatusPage';
|
|
|
|
|
|
|
|
|
|
|
|
@Entity({
|
|
|
|
name: "ExternalStatusPage"
|
|
|
|
})
|
|
|
|
export default class ExternalStatusPage extends BaseModel {
|
|
|
|
|
|
|
|
@Column()
|
|
|
|
name!: string;
|
|
|
|
|
|
|
|
@Column()
|
|
|
|
url!: URL;
|
|
|
|
|
|
|
|
@Column()
|
|
|
|
description!: string;
|
|
|
|
|
|
|
|
@Column()
|
2022-04-29 19:52:23 +00:00
|
|
|
statusPage!: StatusPage
|
2022-04-27 19:38:55 +00:00
|
|
|
@Column()
|
|
|
|
project!: Project
|
|
|
|
|
|
|
|
@Column()
|
|
|
|
deletedByUser!: User
|
|
|
|
|
|
|
|
@Column()
|
|
|
|
createdByUser!: User
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2022-04-26 20:24:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-04-26 20:34:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|