mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-10 15:32:23 +05:30
Add /feeds/videos.xml
This commit is contained in:
parent
0ae43e242f
commit
36c0eae7ed
@ -2315,6 +2315,16 @@ get "/feed/playlist/:plid" do |env|
|
|||||||
document
|
document
|
||||||
end
|
end
|
||||||
|
|
||||||
|
get "/feeds/videos.xml" do |env|
|
||||||
|
if ucid = env.params.query["channel_id"]?
|
||||||
|
env.redirect "/feed/channel/#{ucid}"
|
||||||
|
elsif user = env.params.query["user"]?
|
||||||
|
env.redirect "/feed/channel/#{user}"
|
||||||
|
elsif plid = env.params.query["playlist_id"]?
|
||||||
|
env.redirect "/feed/playlist/#{plid}"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
# Support push notifications via PubSubHubbub
|
# Support push notifications via PubSubHubbub
|
||||||
|
|
||||||
get "/feed/webhook/:token" do |env|
|
get "/feed/webhook/:token" do |env|
|
||||||
|
Loading…
Reference in New Issue
Block a user