mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-14 13:17:24 +01:00
14 lines
444 B
JavaScript
14 lines
444 B
JavaScript
db.users.aggregate([
|
|
{ $group: {
|
|
// _id: { "auth.local.username": "$auth.local.username" },
|
|
// _id: { "auth.facebook.id": "$auth.facebook.id" },
|
|
_id: { "auth.local.email": "$auth.local.email" },
|
|
uniqueIds: { $addToSet: "$_id" },
|
|
count: { $sum: 1 }
|
|
}},
|
|
{ $match: {
|
|
count: { $gt: 1 }
|
|
}}
|
|
]).forEach(function(user){
|
|
// handle duplicates. likely, delete the accounts with older lastCron, or with the starter tasks.
|
|
}) |