- aggiornata la grafica della Home di RISO

- Profilo Completition
- Email Verificata
- Invita un Amico (invio di email)
This commit is contained in:
Surya Paolo
2025-11-15 19:38:55 +01:00
parent 26a42b1f30
commit adf1aac10f
312 changed files with 12061 additions and 81773 deletions

53
src/models/sharewithus.js Executable file
View File

@@ -0,0 +1,53 @@
mongoose = require('mongoose').set('debug', false)
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);
};
module.exports.createIndexes()
.then(() => { })
.catch((err) => { throw err; });