Project Create and Get All projects API completed

This commit is contained in:
2025-05-14 18:47:04 +05:30
parent e2be6deb0a
commit 79b6a4fa75
16 changed files with 447 additions and 51 deletions

View File

@@ -15,7 +15,7 @@ export interface Project extends Document {
}
const projectSchema: Schema = new Schema(
{
projectUuid: { type: String, required: true },
projectUuid: { type: String },
projectName: { type: String },
thumbnail: { type: String },
isArchive: { type: Boolean, default: false },