fix: objection.js 2.0 compat fixes

This commit is contained in:
NGPixel
2020-01-25 23:29:46 -05:00
parent 3e991fa590
commit 8f5265622f
4 changed files with 8 additions and 12 deletions

View File

@@ -56,7 +56,7 @@ module.exports = class UserKey extends Model {
}
static async validateToken ({ kind, token }, context) {
const res = await WIKI.models.userKeys.query().findOne({ kind, token }).eager('user')
const res = await WIKI.models.userKeys.query().findOne({ kind, token }).withGraphJoined('user')
if (res) {
await WIKI.models.userKeys.query().deleteById(res.id)
if (moment.utc().isAfter(moment.utc(res.validUntil))) {