1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-03 09:49:20 +02:00

Add classic feed to channel discovery

This commit is contained in:
Chocobozzz 2025-02-21 14:44:15 +01:00
parent 643fd1e1db
commit 2bb4f4f0e0
No known key found for this signature in database
GPG key ID: 583A612D890159BE

View file

@ -15,6 +15,12 @@ export function getChannelRSSFeeds (url: string, instanceName: string, channel:
{ {
url: `${url}/feeds/podcast/videos.xml?videoChannelId=${channel.id}`, url: `${url}/feeds/podcast/videos.xml?videoChannelId=${channel.id}`,
// TODO: translate // TODO: translate
title: `${channel.name} podcast feed`
},
{
url: `${url}/feeds/videos.xml?videoChannelId=${channel.id}`,
// TODO: translate
title: `${channel.name} feed` title: `${channel.name} feed`
}, },