1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-06 03:50:26 +02:00

Fix podcast feed URL

This commit is contained in:
Chocobozzz 2025-04-11 08:15:24 +02:00
parent b9c3a4837e
commit 1797f7e548
No known key found for this signature in database
GPG key ID: 583A612D890159BE
3 changed files with 17 additions and 3 deletions

View file

@ -6,3 +6,10 @@ export const FeedFormat = {
} as const
export type FeedFormatType = typeof FeedFormat[keyof typeof FeedFormat]
export const FeedType = {
VIDEOS: 'videos',
PODCAST: 'podcast'
} as const
export type FeedType_Type = typeof FeedType[keyof typeof FeedType]