Merge pull request #3993 from overleaf/jel-reconfirmation-script

Add script to refresh features for users not reconfirmed

GitOrigin-RevId: d49f496dc6f1997763d54c6d8f41f7c3634b8b2d
This commit is contained in:
Jessica Lawshe
2021-05-12 02:09:51 +00:00
committed by Copybot
parent 1d94ef5b54
commit 2bf126af68
7 changed files with 385 additions and 1 deletions
@@ -0,0 +1,10 @@
const InstitutionsReconfirmationHandler = require('../app/src/Features/Institutions/InstitutionsReconfirmationHandler')
InstitutionsReconfirmationHandler.processLapsed()
.then(() => {
process.exit(0)
})
.catch(error => {
console.error(error)
process.exit(1)
})