mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-23 07:42:10 +00:00
124 lines
3.4 KiB
TypeScript
124 lines
3.4 KiB
TypeScript
import { Column, Entity, Index, JoinColumn, JoinTable, ManyToMany, ManyToOne } from 'typeorm';
|
|
import BaseModel from './BaseModel';
|
|
import User from './User';
|
|
import Project from './Project';
|
|
import CrudApiEndpoint from '../Types/Database/CrudApiEndpoint';
|
|
import SlugifyColumn from '../Types/Database/SlugifyColumn';
|
|
import Route from '../Types/API/Route';
|
|
import TableColumnType from '../Types/Database/TableColumnType';
|
|
import TableColumn from '../Types/Database/TableColumn';
|
|
import ColumnType from '../Types/Database/ColumnType';
|
|
import ObjectID from '../Types/ObjectID';
|
|
import ColumnLength from '../Types/Database/ColumnLength';
|
|
import TeamPermission from './TeamPermission';
|
|
|
|
@CrudApiEndpoint(new Route('/team'))
|
|
@SlugifyColumn('name', 'slug')
|
|
@Entity({
|
|
name: 'Team',
|
|
})
|
|
export default class Team extends BaseModel {
|
|
|
|
@TableColumn({
|
|
manyToOneRelationColumn: 'projectId',
|
|
type: TableColumnType.Entity,
|
|
})
|
|
@ManyToOne(
|
|
(_type: string) => {
|
|
return Project;
|
|
},
|
|
{
|
|
eager: false,
|
|
nullable: true,
|
|
onDelete: 'CASCADE',
|
|
orphanedRowAction: 'nullify',
|
|
}
|
|
)
|
|
@JoinColumn({ name: 'projectId' })
|
|
public project?: Project;
|
|
|
|
@Index()
|
|
@TableColumn({ type: TableColumnType.ObjectID })
|
|
@Column({
|
|
type: ColumnType.ObjectID,
|
|
nullable: true,
|
|
transformer: ObjectID.getDatabaseTransformer(),
|
|
})
|
|
public projectId?: ObjectID;
|
|
|
|
@TableColumn({ required: true, type: TableColumnType.ShortText })
|
|
@Column({
|
|
nullable: false,
|
|
type: ColumnType.ShortText,
|
|
length: ColumnLength.ShortText,
|
|
})
|
|
public name?: string = undefined;
|
|
|
|
@Index()
|
|
@TableColumn({ required: false, type: TableColumnType.LongText })
|
|
@Column({
|
|
nullable: true,
|
|
type: ColumnType.LongText,
|
|
length: ColumnLength.LongText,
|
|
})
|
|
public description?: string = undefined;
|
|
|
|
@TableColumn({ required: true, unique: true, type: TableColumnType.Slug })
|
|
@Column({
|
|
nullable: false,
|
|
type: ColumnType.Slug,
|
|
length: ColumnLength.Slug,
|
|
})
|
|
public slug?: string = undefined;
|
|
|
|
@TableColumn({
|
|
manyToOneRelationColumn: 'createdByUserId',
|
|
type: TableColumnType.Entity,
|
|
})
|
|
@ManyToOne(
|
|
(_type: string) => {
|
|
return User;
|
|
},
|
|
{
|
|
eager: false,
|
|
nullable: true,
|
|
onDelete: 'CASCADE',
|
|
orphanedRowAction: 'nullify',
|
|
}
|
|
)
|
|
@JoinColumn({ name: 'createdByUserId' })
|
|
public createdByUser?: User;
|
|
|
|
@TableColumn({ type: TableColumnType.ObjectID })
|
|
@Column({
|
|
type: ColumnType.ObjectID,
|
|
nullable: true,
|
|
transformer: ObjectID.getDatabaseTransformer(),
|
|
})
|
|
public createdByUserId?: ObjectID;
|
|
|
|
@TableColumn({
|
|
manyToOneRelationColumn: 'deletedByUserId',
|
|
type: TableColumnType.ObjectID,
|
|
})
|
|
@ManyToOne(
|
|
(_type: string) => {
|
|
return User;
|
|
},
|
|
{
|
|
cascade: false,
|
|
eager: false,
|
|
nullable: true,
|
|
onDelete: 'CASCADE',
|
|
orphanedRowAction: 'nullify',
|
|
}
|
|
)
|
|
@JoinColumn({ name: 'deletedByUserId' })
|
|
public deletedByUser?: User;
|
|
|
|
@ManyToMany(() => TeamPermission)
|
|
@JoinTable()
|
|
public permissions?: Array<TeamPermission> = undefined;
|
|
|
|
}
|