mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-04 20:38:28 +00:00
Merge pull request #18912 from overleaf/ii-remove-deleted-users-from-token-access-refs-script-fix
[web] Improve the removal of deleted users from token access refs GitOrigin-RevId: 7b79e327388e37603a6c4f227f1d4bba743d4730
This commit is contained in:
parent
8d35177b52
commit
ea6f627490
1 changed files with 15 additions and 15 deletions
|
@ -18,21 +18,6 @@ const argv = minimist(process.argv.slice(2), {
|
|||
},
|
||||
})
|
||||
|
||||
if (argv.help || argv._.length > 1) {
|
||||
console.error(`Usage: node scripts/remove_deleted_users_from_token_access_refs.js [OPTS]
|
||||
Finds or removes deleted user ids from token access fields
|
||||
"tokenAccessReadOnly_refs" and "tokenAccessReadAndWrite_refs" in the "projects" collection.
|
||||
|
||||
If no projects are specified, all projects will be processed.
|
||||
|
||||
Options:
|
||||
|
||||
--dry-run finds projects and deleted users but does not do any updates
|
||||
--projects list of projects ids to be fixed (comma separated)
|
||||
`)
|
||||
process.exit(1)
|
||||
}
|
||||
|
||||
const DRY_RUN = argv['dry-run']
|
||||
const PROJECTS_LIST = argv.projects
|
||||
|
||||
|
@ -208,6 +193,21 @@ async function main(DRY_RUN, PROJECTS_LIST) {
|
|||
module.exports = main
|
||||
|
||||
if (require.main === module) {
|
||||
if (argv.help || argv._.length > 1) {
|
||||
console.error(`Usage: node scripts/remove_deleted_users_from_token_access_refs.js [OPTS]
|
||||
Finds or removes deleted user ids from token access fields
|
||||
"tokenAccessReadOnly_refs" and "tokenAccessReadAndWrite_refs" in the "projects" collection.
|
||||
|
||||
If no projects are specified, all projects will be processed.
|
||||
|
||||
Options:
|
||||
|
||||
--dry-run finds projects and deleted users but does not do any updates
|
||||
--projects list of projects ids to be fixed (comma separated)
|
||||
`)
|
||||
process.exit(1)
|
||||
}
|
||||
|
||||
main(DRY_RUN, PROJECTS_LIST)
|
||||
.then(() => {
|
||||
console.error('Done')
|
||||
|
|
Loading…
Reference in a new issue