40 lines
798 B
JavaScript
40 lines
798 B
JavaScript
const mongoose = require('mongoose')
|
|
|
|
function image(img) {
|
|
return '/uploads/images/products/category/' + img
|
|
}
|
|
|
|
const ProductCategorySchema = mongoose.Schema({
|
|
image: {type: String, get: image},
|
|
cover: {type: String, get: image},
|
|
category_details: {
|
|
fa: {
|
|
name: String,
|
|
caption: String
|
|
},
|
|
en: {
|
|
name: String,
|
|
caption: String
|
|
},
|
|
de: {
|
|
name: String,
|
|
caption: String
|
|
},
|
|
tr: {
|
|
name: String,
|
|
caption: String
|
|
},
|
|
it: {
|
|
name: String,
|
|
caption: String
|
|
}
|
|
},
|
|
created_at: String,
|
|
updated_at: String
|
|
}, {
|
|
toObject: {getters: true},
|
|
toJSON: {getters: true}
|
|
})
|
|
|
|
module.exports = mongoose.model('ProductCategory', ProductCategorySchema)
|