mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
1ebc8a79cb
Upgrade Prettier to v2 GitOrigin-RevId: 85aa3fa1acb6332c4f58c46165a43d1a51471f33
39 lines
1 KiB
JavaScript
39 lines
1 KiB
JavaScript
const { waitForDb } = require('../app/src/infrastructure/mongodb')
|
|
const minimist = require('minimist')
|
|
const InstitutionsManager = require('../app/src/Features/Institutions/InstitutionsManager')
|
|
|
|
const institutionId = parseInt(process.argv[2])
|
|
if (isNaN(institutionId)) throw new Error('No institution id')
|
|
console.log('Upgrading users of institution', institutionId)
|
|
|
|
waitForDb()
|
|
.then(main)
|
|
.catch(err => {
|
|
console.error(err)
|
|
process.exit(1)
|
|
})
|
|
|
|
function main() {
|
|
const argv = minimist(process.argv.slice(2))
|
|
if (!argv.notify) {
|
|
throw new Error('Missing `notify` flag. Please use `--notify true|false`')
|
|
}
|
|
if (!argv.notify[0]) {
|
|
throw new Error('Empty `notify` flag. Please use `--notify true|false`')
|
|
}
|
|
const notify = argv.notify[0] === 't'
|
|
console.log('Running with notify =', notify)
|
|
|
|
InstitutionsManager.refreshInstitutionUsers(
|
|
institutionId,
|
|
notify,
|
|
function (error) {
|
|
if (error) {
|
|
console.log(error)
|
|
} else {
|
|
console.log('DONE 👌')
|
|
}
|
|
process.exit()
|
|
}
|
|
)
|
|
}
|