]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/types/models/user/user-notification.ts
restore live transcoding to live streaming tab
[github/Chocobozzz/PeerTube.git] / server / types / models / user / user-notification.ts
index 92ea16768c581b3b6294e66912576cde8f48fe75..58764a74842a6207563d380c094ac5f972dc3813 100644 (file)
@@ -53,10 +53,10 @@ export module UserNotificationIncludes {
     Pick<VideoCommentAbuseModel, 'id'> &
     PickWith<VideoCommentAbuseModel, 'VideoComment',
     Pick<VideoCommentModel, 'id' | 'originCommentId' | 'getThreadId'> &
-    PickWith<VideoCommentModel, 'Video', Pick<VideoModel, 'uuid'>>>
+    PickWith<VideoCommentModel, 'Video', Pick<VideoModel, 'id' | 'name' | 'uuid'>>>
 
   export type AbuseInclude =
-    Pick<AbuseModel, 'id'> &
+    Pick<AbuseModel, 'id' | 'state'> &
     PickWith<AbuseModel, 'VideoAbuse', VideoAbuseInclude> &
     PickWith<AbuseModel, 'VideoCommentAbuse', VideoCommentAbuseInclude> &
     PickWith<AbuseModel, 'FlaggedAccount', AccountIncludeActor>