mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
4997b7f1ee
[web] Rename overleaf-integration module to saas-authentication GitOrigin-RevId: 7d69e06a19da9855fa9a0962114ad97b45ad8875
31 lines
854 B
JavaScript
31 lines
854 B
JavaScript
const SAMLUserIdAttributeBatchHandler = require('../modules/saas-authentication/app/src/SAML/SAMLUserIdAttributeBatchHandler')
|
|
|
|
const startInstitutionId = parseInt(process.argv[2])
|
|
const endInstitutionId = parseInt(process.argv[3])
|
|
|
|
process.env.LOG_LEVEL = 'info'
|
|
|
|
process.env.MONGO_CONNECTION_STRING =
|
|
process.env.READ_ONLY_MONGO_CONNECTION_STRING
|
|
|
|
console.log('Checking users at institutions')
|
|
|
|
console.log(
|
|
'Start institution ID:',
|
|
startInstitutionId ||
|
|
'none provided, will start at beginning of ordered list.'
|
|
)
|
|
console.log(
|
|
'End institution ID:',
|
|
endInstitutionId || 'none provided, will go to end of ordered list.'
|
|
)
|
|
|
|
SAMLUserIdAttributeBatchHandler.check(startInstitutionId, endInstitutionId)
|
|
.then(result => {
|
|
console.log(result)
|
|
process.exit(0)
|
|
})
|
|
.catch(error => {
|
|
console.error(error)
|
|
process.exit(1)
|
|
})
|