mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
36 lines
869 B
JavaScript
36 lines
869 B
JavaScript
|
exports.tags = ['saas']
|
||
|
|
||
|
exports.migrate = async client => {
|
||
|
const { db } = client
|
||
|
await db.ssoConfigs.updateMany(
|
||
|
{ certificate: { $exists: true }, certificates: { $exists: false } },
|
||
|
[
|
||
|
{ $set: { certificates: ['$certificate'] } },
|
||
|
{
|
||
|
$unset: 'certificate',
|
||
|
},
|
||
|
]
|
||
|
)
|
||
|
await db.ssoConfigs.updateMany(
|
||
|
{ userFirstNameAttribute: null },
|
||
|
{ $unset: { userFirstNameAttribute: true } }
|
||
|
)
|
||
|
await db.ssoConfigs.updateMany(
|
||
|
{ userLastNameAttribute: null },
|
||
|
{ $unset: { userLastNameAttribute: true } }
|
||
|
)
|
||
|
}
|
||
|
|
||
|
exports.rollback = async client => {
|
||
|
const { db } = client
|
||
|
await db.ssoConfigs.updateMany(
|
||
|
{ certificate: { $exists: false }, certificates: { $exists: true } },
|
||
|
[
|
||
|
{ $set: { certificate: { $arrayElemAt: ['$certificates', 0] } } },
|
||
|
{
|
||
|
$unset: 'certificates',
|
||
|
},
|
||
|
]
|
||
|
)
|
||
|
}
|