update:add ci cd files ==> do not edit those file

This commit is contained in:
mahyargdz
2024-10-10 21:49:00 +03:30
parent 6fe34708a2
commit 8cf0492c87
464 changed files with 79533 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
const mongoose = require('mongoose')
function image(img) {
return '/uploads/images/galleryCover/' + img
}
function image2(img) {
return '/uploads/images/galleryCover/thumb/' + img
}
const GalleryCategorySchema = mongoose.Schema({
cover: {type: String, get: image},
thumb: {type: String, get: image2},
locale: {
fa: {
title: String,
description: String
},
en: {
title: String,
description: String
}
},
index : {type : Number , default : 1}
})
module.exports = mongoose.model('GalleryCategory', GalleryCategorySchema)