forked from UKSOURCE/cms.hailearning.edu.vn
64 lines
1.0 KiB
JavaScript
64 lines
1.0 KiB
JavaScript
const mongoose = require('mongoose');
|
|
|
|
const aboutSchema = new mongoose.Schema({
|
|
banner: {
|
|
image: String,
|
|
title: String,
|
|
text: String
|
|
},
|
|
about: {
|
|
title: String,
|
|
paragraphs: [String],
|
|
list_items: [String],
|
|
button: {
|
|
text: String,
|
|
url: String
|
|
},
|
|
image: String,
|
|
quote: {
|
|
mark_image: String,
|
|
title: String,
|
|
text: String,
|
|
author: String
|
|
}
|
|
},
|
|
values: {
|
|
background_image: String,
|
|
items: [{
|
|
icon: String,
|
|
title: String,
|
|
text: String
|
|
}]
|
|
},
|
|
education: {
|
|
images: {
|
|
student1: String,
|
|
student2: String
|
|
},
|
|
subtitle: String,
|
|
title: String,
|
|
text: String
|
|
},
|
|
advantages: {
|
|
title: String,
|
|
items: [{
|
|
number: String,
|
|
title: String,
|
|
text: String
|
|
}]
|
|
},
|
|
academic_board: {
|
|
title: String,
|
|
members: [{
|
|
image: String,
|
|
title: String,
|
|
name: String,
|
|
color: String
|
|
}]
|
|
},
|
|
updatedAt: Date
|
|
}, {
|
|
timestamps: true
|
|
});
|
|
|
|
module.exports = mongoose.model('About', aboutSchema);
|