diff options
Diffstat (limited to 'server/models')
-rw-r--r-- | server/models/video/video.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/server/models/video/video.ts b/server/models/video/video.ts index d748e81bd..aa1878caa 100644 --- a/server/models/video/video.ts +++ b/server/models/video/video.ts | |||
@@ -68,6 +68,7 @@ import { sendDeleteVideo } from '../../lib/activitypub/send' | |||
68 | import { AccountModel } from '../account/account' | 68 | import { AccountModel } from '../account/account' |
69 | import { AccountVideoRateModel } from '../account/account-video-rate' | 69 | import { AccountVideoRateModel } from '../account/account-video-rate' |
70 | import { ActorModel } from '../activitypub/actor' | 70 | import { ActorModel } from '../activitypub/actor' |
71 | import { AvatarModel } from '../avatar/avatar' | ||
71 | import { ServerModel } from '../server/server' | 72 | import { ServerModel } from '../server/server' |
72 | import { getSort, throwIfNotValid } from '../utils' | 73 | import { getSort, throwIfNotValid } from '../utils' |
73 | import { TagModel } from './tag' | 74 | import { TagModel } from './tag' |
@@ -175,6 +176,10 @@ enum ScopeNames { | |||
175 | attributes: [ 'host' ], | 176 | attributes: [ 'host' ], |
176 | model: () => ServerModel.unscoped(), | 177 | model: () => ServerModel.unscoped(), |
177 | required: false | 178 | required: false |
179 | }, | ||
180 | { | ||
181 | model: () => AvatarModel.unscoped(), | ||
182 | required: false | ||
178 | } | 183 | } |
179 | ] | 184 | ] |
180 | } | 185 | } |