mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Don't find holding accounts with a hashed password
This commit is contained in:
parent
ba3333303c
commit
930aa9c572
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ module.exports = HoldingAccountMigration =
|
|||
DRY_RUN: true
|
||||
|
||||
findHoldingAccounts: (callback = (error, users) ->) ->
|
||||
db.users.find({holdingAccount: true}, {holdingAccount: 1, email: 1}, callback)
|
||||
db.users.find({holdingAccount: true, hashedPassword: { $exists: false }}, {holdingAccount: 1, email: 1}, callback)
|
||||
|
||||
deleteUserProjects: (user_id, callback = (error) ->) ->
|
||||
# Holding accounts can't own projects, so only remove from
|
||||
|
|
Loading…
Reference in a new issue