fix: bypass users model when updating lastLoginAt
This commit is contained in:
parent
1c80faa94d
commit
a33691d642
@ -342,7 +342,8 @@ module.exports = class User extends Model {
|
||||
}
|
||||
|
||||
// Update Last Login Date
|
||||
await WIKI.models.users.query().findById(user.id).patch({ lastLoginAt: new Date().toISOString() })
|
||||
// -> Bypass Objection.js to avoid updating the updatedAt field
|
||||
await WIKI.models.knex('users').where('id', user.id).update({ lastLoginAt: new Date().toISOString() })
|
||||
|
||||
return {
|
||||
token: jwt.sign({
|
||||
|
Loading…
Reference in New Issue
Block a user