const mongoose = require('mongoose') function image(img) { if (img) return '/uploads/images/customer/' + img } const CustomerCommentSchema = mongoose.Schema({ locale: { fa: { name: String, position: String, comment: String }, en: { name: String, position: String, comment: String } }, image: {type: String, get: image} }) module.exports = mongoose.model('CustomerComment', CustomerCommentSchema)