فهرست منبع

fix: User destroy hook record reference

Owen Diffey 2 هفته پیش
والد
کامیت
5a412e4ef9
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      backend/src/modules/DataModule/models/User.ts

+ 1 - 1
backend/src/modules/DataModule/models/User.ts

@@ -335,7 +335,7 @@ export const setup = async () => {
 	User.addHook("beforeDestroy", async (record: User, options) => {
 		await Session.destroy({
 			where: {
-				userId: user._id
+				userId: record._id
 			},
 			individualHooks: true,
 			transaction: options.transaction