The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Rocket.Chat/server/startup/migrations/v010.js

33 lines
608 B

RocketChat.Migrations.add({
version: 10,
up() {
/*
* Remove duplicated usernames from rooms
*/
let count = 0;
RocketChat.models.Rooms.find({
'usernames.0': {
$exists: true
}
}, {
fields: {
usernames: 1
}
}).forEach((room) => {
const newUsernames = _.uniq(room.usernames);
if (newUsernames.length !== room.usernames.length) {
count++;
return RocketChat.models.Rooms.update({
_id: room._id
}, {
$set: {
usernames: newUsernames
}
});
}
});
return console.log(`Removed duplicated usernames from ${ count } rooms`);
}
});