mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
df3be1bd5e
[web] Convert modules/saas-authentication to ES modules GitOrigin-RevId: 5589bb2a7ad86da689994b6336cdac228de66c17
19 lines
588 B
JavaScript
19 lines
588 B
JavaScript
import SAMLEmailBatchCheck from '../modules/saas-authentication/app/src/SAML/SAMLEmailBatchCheck.mjs'
|
|
import { ensureRunningOnMongoSecondaryWithTimeout } from './helpers/env_variable_helper.mjs'
|
|
|
|
ensureRunningOnMongoSecondaryWithTimeout(300000)
|
|
|
|
const startInstitutionId = parseInt(process.argv[2])
|
|
const emitDetailedData = process.argv.includes('--detailed-data')
|
|
|
|
try {
|
|
const result = await SAMLEmailBatchCheck.promises.checkEmails(
|
|
startInstitutionId,
|
|
emitDetailedData
|
|
)
|
|
console.table(result)
|
|
process.exit()
|
|
} catch (error) {
|
|
console.error(error)
|
|
process.exit(1)
|
|
}
|