mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
018a44eeb5
[misc] normalize mongo imports GitOrigin-RevId: ac653d9982e0d36736b90f4c03d4c00be88ea76a
30 lines
585 B
JavaScript
30 lines
585 B
JavaScript
const { db, ObjectId } = require('../../app/src/infrastructure/mongojs')
|
|
const Async = require('async')
|
|
|
|
const projectIds = [
|
|
// put ids here
|
|
]
|
|
|
|
Async.eachLimit(
|
|
projectIds,
|
|
5,
|
|
(projectId, cb) => {
|
|
db.projects.update(
|
|
{ _id: ObjectId(projectId) },
|
|
{
|
|
$unset: { tokens: 1 },
|
|
$set: { publicAccesLevel: 'private' }
|
|
},
|
|
err => {
|
|
if (err) return cb(err)
|
|
console.log(`Deactivated tokens for ${projectId}`)
|
|
cb()
|
|
}
|
|
)
|
|
},
|
|
err => {
|
|
if (err) throw err
|
|
console.log('>> Done')
|
|
process.exit(0)
|
|
}
|
|
)
|