4975-mdbVersion-last-method #1245

Merged
guillermo merged 12 commits from 4975-mdbVersion-last-method into dev 2023-01-16 11:40:23 +00:00
1 changed files with 6 additions and 1 deletions
Showing only changes of commit 2803de9445 - Show all commits

View File

@ -36,6 +36,11 @@ module.exports = Self => {
if (mdb.version > maxNumber)
maxNumber = mdb.version;
}
return maxNumber;
let response = {
version: maxNumber
};
return response;
};
};