mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-28 03:21:56 +02:00
Merge pull request #11711 from overleaf/tm-invite-emails-lowercase-readd-migration
Re-add migration that ensures group invite emails are lowercase GitOrigin-RevId: 60edac2c6f565930da7d3f205978be0a78f5e80f
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
/* eslint-disable no-unused-vars */
|
||||
|
||||
const Helpers = require('./lib/helpers')
|
||||
|
||||
exports.tags = ['saas']
|
||||
|
||||
exports.migrate = async client => {
|
||||
const { db } = client
|
||||
db.subscriptions.updateMany(
|
||||
{
|
||||
'teamInvites.0': {
|
||||
$exists: true,
|
||||
},
|
||||
},
|
||||
[
|
||||
{
|
||||
$set: {
|
||||
teamInvites: {
|
||||
$map: {
|
||||
input: '$teamInvites',
|
||||
in: {
|
||||
$mergeObjects: [
|
||||
'$$this',
|
||||
{
|
||||
email: {
|
||||
$toLower: '$$this.email',
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
]
|
||||
)
|
||||
}
|
||||
|
||||
exports.rollback = async client => {
|
||||
// There is no way back.
|
||||
}
|
||||
Reference in New Issue
Block a user