mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-13 14:31:33 +00:00
11 lines
282 B
JavaScript
11 lines
282 B
JavaScript
|
const InstitutionsReconfirmationHandler = require('../app/src/Features/Institutions/InstitutionsReconfirmationHandler')
|
||
|
|
||
|
InstitutionsReconfirmationHandler.processLapsed()
|
||
|
.then(() => {
|
||
|
process.exit(0)
|
||
|
})
|
||
|
.catch(error => {
|
||
|
console.error(error)
|
||
|
process.exit(1)
|
||
|
})
|