aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/channel/video-channel.model.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-07-28 11:28:07 +0200
committerChocobozzz <me@florianbigard.com>2023-07-28 11:41:14 +0200
commitf932957b2e33da0b6d9a29dd98281b28f220a77a (patch)
tree71ada3f7308e83730d607312385170dc489da422 /shared/models/videos/channel/video-channel.model.ts
parent89aa3331106874266f6feeee7bff852da2c1727e (diff)
downloadPeerTube-f932957b2e33da0b6d9a29dd98281b28f220a77a.tar.gz
PeerTube-f932957b2e33da0b6d9a29dd98281b28f220a77a.tar.zst
PeerTube-f932957b2e33da0b6d9a29dd98281b28f220a77a.zip
Remove banner/avatar fields from channel/account
Deprecated since 4.2
Diffstat (limited to 'shared/models/videos/channel/video-channel.model.ts')
-rw-r--r--shared/models/videos/channel/video-channel.model.ts6
1 files changed, 0 insertions, 6 deletions
diff --git a/shared/models/videos/channel/video-channel.model.ts b/shared/models/videos/channel/video-channel.model.ts
index 68e2f9c4c..ce5fc0e8d 100644
--- a/shared/models/videos/channel/video-channel.model.ts
+++ b/shared/models/videos/channel/video-channel.model.ts
@@ -21,9 +21,6 @@ export interface VideoChannel extends Actor {
21 totalViews?: number 21 totalViews?: number
22 22
23 banners: ActorImage[] 23 banners: ActorImage[]
24
25 // TODO: remove, deprecated in 4.2
26 banner: ActorImage
27} 24}
28 25
29export interface VideoChannelSummary { 26export interface VideoChannelSummary {
@@ -34,7 +31,4 @@ export interface VideoChannelSummary {
34 host: string 31 host: string
35 32
36 avatars: ActorImage[] 33 avatars: ActorImage[]
37
38 // TODO: remove, deprecated in 4.2
39 avatar: ActorImage
40} 34}