mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-26 18:51:50 +02:00
13 lines
318 B
CoffeeScript
13 lines
318 B
CoffeeScript
mongojs = require("../../infrastructure/mongojs")
|
|
db = mongojs.db
|
|
ObjectId = mongojs.ObjectId
|
|
|
|
module.exports =
|
|
|
|
findByEmail: (email, callback)->
|
|
email = email.trim()
|
|
db.users.findOne email:email, (err, user)->
|
|
callback(err, user)
|
|
|
|
findById: (_id, callback)->
|
|
db.users.findOne _id:ObjectId(_id+""), callback |