mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-07-24 12:54:31 +02:00
Ignore sequelize hooks when updating user lastSeen on socket authentication
This commit is contained in:
parent
572fb0993c
commit
7a9c869ac5
2 changed files with 5 additions and 3 deletions
|
@ -99,11 +99,13 @@ class User extends Model {
|
|||
* Update User from old user model
|
||||
*
|
||||
* @param {oldUser} oldUser
|
||||
* @param {boolean} [hooks=true] Run before / after bulk update hooks?
|
||||
* @returns {Promise<boolean>}
|
||||
*/
|
||||
static updateFromOld(oldUser) {
|
||||
static updateFromOld(oldUser, hooks = true) {
|
||||
const user = this.getFromOld(oldUser)
|
||||
return this.update(user, {
|
||||
hooks: !!hooks,
|
||||
where: {
|
||||
id: user.id
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue