routing: move watch/embed routes registration to Invidious::Routing

This commit is contained in:
Samantaz Fox
2022-08-10 00:22:40 +02:00
parent e2532de766
commit 906466d7fb
2 changed files with 18 additions and 15 deletions

View File

@@ -71,6 +71,22 @@ module Invidious::Routing
end
end
def register_watch_routes
get "/watch", Routes::Watch, :handle
post "/watch_ajax", Routes::Watch, :mark_watched
get "/watch/:id", Routes::Watch, :redirect
get "/shorts/:id", Routes::Watch, :redirect
get "/clip/:clip", Routes::Watch, :clip
get "/w/:id", Routes::Watch, :redirect
get "/v/:id", Routes::Watch, :redirect
get "/e/:id", Routes::Watch, :redirect
post "/download", Routes::Watch, :download
get "/embed/", Routes::Embed, :redirect
get "/embed/:id", Routes::Embed, :show
end
def register_api_manifest_routes
get "/api/manifest/dash/id/:id", Routes::API::Manifest, :get_dash_video_id