This commit is contained in:
Paolo Arena
2021-01-18 00:48:17 +01:00
parent 142380e54b
commit 5493953b58
22 changed files with 9749 additions and 231 deletions

View File

@@ -0,0 +1,49 @@
mongoose = require('mongoose');
const Schema = mongoose.Schema;
const tools = require('../tools/general');
mongoose.Promise = global.Promise;
mongoose.level = "F";
// Resolving error Unknown modifier: $pushAll
mongoose.plugin(schema => {
schema.options.usePushEach = true
});
const ShareWithUsSchema = new Schema({
idapp: {
type: String,
},
userId: {
type: String,
},
description: {
type: String,
},
numshared: {
type: Number,
},
rating: {
type: Number,
},
});
var ShareWithUs = module.exports = mongoose.model('ShareWithUs', ShareWithUsSchema);
module.exports.getFieldsForSearch = function () {
return [{field: 'description', type: tools.FieldType.string}]
};
module.exports.executeQueryTable = function (idapp, params) {
params.fieldsearch = this.getFieldsForSearch();
return tools.executeQueryTable(this, idapp, params);
};
module.exports.findAllIdApp = async function (idapp) {
const myfind = { idapp };
return await ShareWithUs.find(myfind);
};