Add 'authorId' to /api/v1/trending and /api/v1/top

This commit is contained in:
Omar Roth 2018-09-19 10:37:00 -05:00
parent 54f9941c7b
commit 0f5b93e394
1 changed files with 2 additions and 0 deletions

View File

@ -2405,6 +2405,7 @@ get "/api/v1/trending" do |env|
json.field "viewCount", video.views
json.field "author", video.author
json.field "authorId", video.ucid
json.field "authorUrl", "/channel/#{video.ucid}"
json.field "published", video.published.epoch
@ -2435,6 +2436,7 @@ get "/api/v1/top" do |env|
json.field "viewCount", video.views
json.field "author", video.author
json.field "authorId", video.ucid
json.field "authorUrl", "/channel/#{video.ucid}"
json.field "published", video.published.epoch
json.field "publishedText", "#{recode_date(video.published)} ago"