Add caption URL to video info

This commit is contained in:
Omar Roth 2018-09-19 14:08:59 -05:00
parent 4c8bb3b293
commit c166f46b7c
1 changed files with 2 additions and 0 deletions

View File

@ -1794,6 +1794,7 @@ get "/api/v1/captions/:id" do |env|
json.object do
json.field "label", caption.name.simpleText
json.field "languageCode", caption.languageCode
json.field "url", "/api/v1/captions/#{id}?label=#{URI.escape(caption.name.simpleText)}"
end
end
end
@ -2354,6 +2355,7 @@ get "/api/v1/videos/:id" do |env|
json.object do
json.field "label", caption.name.simpleText
json.field "languageCode", caption.languageCode
json.field "url", "/api/v1/captions/#{id}?label=#{URI.escape(caption.name.simpleText)}"
end
end
end