mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
a7517eefcb
[web] populate db with collections on import, ahead of waitForDb() call GitOrigin-RevId: 7eb4cd61c2052187acd9947d7060f54d9822d314
38 lines
980 B
JavaScript
38 lines
980 B
JavaScript
import minimist from 'minimist'
|
|
import InstitutionsManager from '../app/src/Features/Institutions/InstitutionsManager.js'
|
|
|
|
const institutionId = parseInt(process.argv[2])
|
|
if (isNaN(institutionId)) throw new Error('No institution id')
|
|
console.log('Refreshing users at institution', institutionId)
|
|
|
|
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()
|
|
}
|
|
)
|
|
}
|
|
|
|
try {
|
|
await main()
|
|
} catch (error) {
|
|
console.error(error)
|
|
process.exit(1)
|
|
}
|