diff options
author | Chocobozzz <me@florianbigard.com> | 2020-08-05 15:35:58 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-08-07 08:58:29 +0200 |
commit | 6fad8e51c47b9d07bea99b777c1f55c10f6d576d (patch) | |
tree | 09b33652d565a6dbe70e413b88c64aa611f7f4b6 /server/models/video | |
parent | a75292db788d400ba84933693f5f98a83f3aaa60 (diff) | |
download | PeerTube-6fad8e51c47b9d07bea99b777c1f55c10f6d576d.tar.gz PeerTube-6fad8e51c47b9d07bea99b777c1f55c10f6d576d.tar.zst PeerTube-6fad8e51c47b9d07bea99b777c1f55c10f6d576d.zip |
Handle playlist oembed
Diffstat (limited to 'server/models/video')
-rw-r--r-- | server/models/video/video-playlist.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/server/models/video/video-playlist.ts b/server/models/video/video-playlist.ts index b38cf9c6a..f935bf4f0 100644 --- a/server/models/video/video-playlist.ts +++ b/server/models/video/video-playlist.ts | |||
@@ -494,6 +494,10 @@ export class VideoPlaylistModel extends Model<VideoPlaylistModel> { | |||
494 | return WEBSERVER.URL + '/videos/watch/playlist/' + this.uuid | 494 | return WEBSERVER.URL + '/videos/watch/playlist/' + this.uuid |
495 | } | 495 | } |
496 | 496 | ||
497 | getEmbedStaticPath () { | ||
498 | return '/video-playlists/embed/' + this.uuid | ||
499 | } | ||
500 | |||
497 | setAsRefreshed () { | 501 | setAsRefreshed () { |
498 | this.changed('updatedAt', true) | 502 | this.changed('updatedAt', true) |
499 | 503 | ||