mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-03 14:19:01 +02:00
adding DB migration for managedUserEnabled flag (#15516)
GitOrigin-RevId: 82727328d6eb25bb5fe394053beb9d943cd253e9
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
/* eslint-disable no-unused-vars */
|
||||
|
||||
const Helpers = require('./lib/helpers')
|
||||
|
||||
exports.tags = ['saas']
|
||||
|
||||
exports.migrate = async client => {
|
||||
const { db } = client
|
||||
await db.subscriptions.updateMany(
|
||||
{ groupPolicy: { $exists: true } },
|
||||
{ $set: { managedUsersEnabled: true } }
|
||||
)
|
||||
}
|
||||
|
||||
exports.rollback = async client => {
|
||||
const { db } = client
|
||||
await db.subscriptions.updateMany(
|
||||
{ groupPolicy: { $exists: true } },
|
||||
{ $unset: { managedUsersEnabled: '' } }
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user