Add subscribe button to channel page

This commit is contained in:
Omar Roth 2018-06-14 19:06:22 -05:00
parent 7234785145
commit 650b8a50fc
2 changed files with 29 additions and 0 deletions

View file

@ -939,6 +939,14 @@ get "/videoplayback*" do |env|
end
get "/channel/:ucid" do |env|
authorized = env.get? "authorized"
if authorized
sid = env.get("sid").as(String)
subscriptions = PG_DB.query_one?("SELECT subscriptions FROM users WHERE id = $1", sid, as: Array(String))
end
subscriptions ||= [] of String
ucid = env.params.url["ucid"]
page = env.params.query["page"]?.try &.to_i