All files / src/domains/projects/schemas project-template.schema.ts

0% Statements 0/12
0% Branches 0/5
100% Functions 0/0
0% Lines 0/10

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17                                 
import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose';
import { Document, Schema as MongooseSchema } from 'mongoose';
 
@Schema({ collection: 'project_templates', timestamps: true })
export class ProjectTemplate extends Document {
  @Prop({ type: MongooseSchema.Types.ObjectId, required: true, index: true })
  tenantId!: MongooseSchema.Types.ObjectId;
  @Prop({ required: true }) templateName!: string;
  @Prop() description?: string;
  @Prop({ type: [MongooseSchema.Types.Mixed], default: [] })
  defaultMilestones!: Record<string, unknown>[];
  @Prop({ type: [String], default: [] }) defaultTaskLists!: string[];
  @Prop({ default: true }) isActive!: boolean;
}
export const ProjectTemplateSchema =
  SchemaFactory.createForClass(ProjectTemplate);