diff options
author | Chocobozzz <me@florianbigard.com> | 2021-06-11 14:09:33 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-06-11 14:09:52 +0200 |
commit | 71d4af1efc810f853e1a0d986bf758c201692594 (patch) | |
tree | 2066053638baefb6430772c2e0a0aa1774019a51 /server/typings/express | |
parent | 3c79c2ce86eaf9e151ab6c2c9d1f646968a16744 (diff) | |
download | PeerTube-71d4af1efc810f853e1a0d986bf758c201692594.tar.gz PeerTube-71d4af1efc810f853e1a0d986bf758c201692594.tar.zst PeerTube-71d4af1efc810f853e1a0d986bf758c201692594.zip |
Use raw SQL for most of video queries
Diffstat (limited to 'server/typings/express')
-rw-r--r-- | server/typings/express/index.d.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/typings/express/index.d.ts b/server/typings/express/index.d.ts index 00ff68943..de673f4fc 100644 --- a/server/typings/express/index.d.ts +++ b/server/typings/express/index.d.ts | |||
@@ -11,6 +11,7 @@ import { | |||
11 | MVideoChangeOwnershipFull, | 11 | MVideoChangeOwnershipFull, |
12 | MVideoFile, | 12 | MVideoFile, |
13 | MVideoFormattableDetails, | 13 | MVideoFormattableDetails, |
14 | MVideoId, | ||
14 | MVideoImmutable, | 15 | MVideoImmutable, |
15 | MVideoLive, | 16 | MVideoLive, |
16 | MVideoPlaylistFull, | 17 | MVideoPlaylistFull, |
@@ -106,8 +107,7 @@ declare module 'express' { | |||
106 | videoAll?: MVideoFullLight | 107 | videoAll?: MVideoFullLight |
107 | onlyImmutableVideo?: MVideoImmutable | 108 | onlyImmutableVideo?: MVideoImmutable |
108 | onlyVideo?: MVideoThumbnail | 109 | onlyVideo?: MVideoThumbnail |
109 | onlyVideoWithRights?: MVideoWithRights | 110 | videoId?: MVideoId |
110 | videoId?: MVideoIdThumbnail | ||
111 | 111 | ||
112 | videoLive?: MVideoLive | 112 | videoLive?: MVideoLive |
113 | 113 | ||