2020-10-05 08:29:37 +00:00
|
|
|
const { waitForDb } = require('../app/src/infrastructure/mongodb')
|
2019-07-11 18:45:50 +00:00
|
|
|
const InstitutionsManager = require('../app/src/Features/Institutions/InstitutionsManager')
|
2019-01-28 14:18:01 +00:00
|
|
|
|
|
|
|
const institutionId = parseInt(process.argv[2])
|
|
|
|
if (isNaN(institutionId)) throw new Error('No institution id')
|
|
|
|
console.log('Checking users of institution', institutionId)
|
|
|
|
|
2020-10-05 08:29:37 +00:00
|
|
|
waitForDb()
|
|
|
|
.then(main)
|
|
|
|
.catch(err => {
|
|
|
|
console.error(err)
|
|
|
|
process.exit(1)
|
|
|
|
})
|
|
|
|
|
|
|
|
function main() {
|
2021-04-14 13:17:21 +00:00
|
|
|
InstitutionsManager.checkInstitutionUsers(
|
|
|
|
institutionId,
|
|
|
|
function (error, usersSummary) {
|
|
|
|
if (error) {
|
|
|
|
console.log(error)
|
|
|
|
} else {
|
|
|
|
console.log(usersSummary)
|
|
|
|
}
|
|
|
|
process.exit()
|
2020-10-05 08:29:37 +00:00
|
|
|
}
|
2021-04-14 13:17:21 +00:00
|
|
|
)
|
2020-10-05 08:29:37 +00:00
|
|
|
}
|