overleaf/services/web/migrations/20230124092607_clear_old_2fa_setup.mjs
Liangjun Song 9e15c73228 Merge pull request #20732 from overleaf/revert-20731-revert-20480-ls-convert-migration-scripts-to-esm
Revert "Revert "Convert migration scripts to ESM""

GitOrigin-RevId: 0430a3cd02b9d23bf0f4573346351dcf4ee17fa6
2024-10-14 10:58:50 +00:00

37 lines
740 B
JavaScript

import BatchedUpdateScript from '../scripts/helpers/batchedUpdate.js'
const { batchedUpdate } = BatchedUpdateScript
const tags = ['saas']
const batchedUpdateOptions = {
VERBOSE_LOGGING: 'true',
BATCH_SIZE: '1',
}
const migrate = async () => {
await batchedUpdate(
'users',
{ 'twoFactorAuthentication.secret': { $exists: true } },
{ $unset: { twoFactorAuthentication: true } },
null,
null,
batchedUpdateOptions
)
}
const rollback = async () => {
await batchedUpdate(
'users',
{ 'twoFactorAuthentication.secretEncrypted': { $exists: true } },
{ $unset: { twoFactorAuthentication: true } },
null,
null,
batchedUpdateOptions
)
}
export default {
tags,
migrate,
rollback,
}