diff options
author | Chocobozzz <me@florianbigard.com> | 2021-07-01 16:47:14 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-07-01 16:47:14 +0200 |
commit | 06c27593386459b0f6b85fc674460ea5af23f7f1 (patch) | |
tree | 37b126b16b9f482e4c36a01d08434c659882521b /server/models/video | |
parent | 693c6586cb896a84ff0f897b1c242bcf7bdcbaee (diff) | |
download | PeerTube-06c27593386459b0f6b85fc674460ea5af23f7f1.tar.gz PeerTube-06c27593386459b0f6b85fc674460ea5af23f7f1.tar.zst PeerTube-06c27593386459b0f6b85fc674460ea5af23f7f1.zip |
Fix hooks definition
Diffstat (limited to 'server/models/video')
-rw-r--r-- | server/models/video/video-channel.ts | 3 | ||||
-rw-r--r-- | server/models/video/video.ts | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/server/models/video/video-channel.ts b/server/models/video/video-channel.ts index f84b85290..183e7448c 100644 --- a/server/models/video/video-channel.ts +++ b/server/models/video/video-channel.ts | |||
@@ -291,8 +291,7 @@ export class VideoChannelModel extends Model<Partial<AttributesOnly<VideoChannel | |||
291 | @BelongsTo(() => AccountModel, { | 291 | @BelongsTo(() => AccountModel, { |
292 | foreignKey: { | 292 | foreignKey: { |
293 | allowNull: false | 293 | allowNull: false |
294 | }, | 294 | } |
295 | hooks: true | ||
296 | }) | 295 | }) |
297 | Account: AccountModel | 296 | Account: AccountModel |
298 | 297 | ||
diff --git a/server/models/video/video.ts b/server/models/video/video.ts index 7a9e96210..1e5648a36 100644 --- a/server/models/video/video.ts +++ b/server/models/video/video.ts | |||
@@ -572,7 +572,6 @@ export class VideoModel extends Model<Partial<AttributesOnly<VideoModel>>> { | |||
572 | foreignKey: { | 572 | foreignKey: { |
573 | allowNull: true | 573 | allowNull: true |
574 | }, | 574 | }, |
575 | hooks: true, | ||
576 | onDelete: 'cascade' | 575 | onDelete: 'cascade' |
577 | }) | 576 | }) |
578 | VideoChannel: VideoChannelModel | 577 | VideoChannel: VideoChannelModel |