Re-add comments that declare PubSubHubbub routes

This commit is contained in:
syeopite 2021-08-23 16:42:43 -07:00
parent 1aaa344a61
commit 2fe9345584
No known key found for this signature in database
GPG Key ID: 6FA616E5A5294A82

View File

@ -375,6 +375,8 @@ Invidious::Routing.get "/feed/channel/:ucid", Invidious::Routes::Feeds, :rss_cha
Invidious::Routing.get "/feed/private", Invidious::Routes::Feeds, :rss_private
Invidious::Routing.get "/feed/playlist/:plid", Invidious::Routes::Feeds, :rss_playlist
Invidious::Routing.get "/feeds/videos.xml", Invidious::Routes::Feeds, :rss_videos
# Support push notifications via PubSubHubbub
Invidious::Routing.get "/feed/webhook/:token", Invidious::Routes::Feeds, :push_notifications_get
Invidious::Routing.post "/feed/webhook/:token", Invidious::Routes::Feeds, :push_notifications_post