- CMyPopupEdit

- CMyEditor
 - MySkills
This commit is contained in:
Paolo Arena
2021-10-28 00:38:10 +02:00
parent 300ab15ca7
commit ad7fc67d43
8 changed files with 126 additions and 48 deletions

View File

@@ -96,6 +96,12 @@ CitySchema.statics.executeQueryTable = function (idapp, params) {
return tools.executeQueryTable(this, 0, params);
};
CitySchema.statics.findAllIdApp = async function (idapp) {
const myfind = {};
return City.find(myfind);
};
const City = mongoose.model('City', CitySchema);