mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-10 15:32:23 +05:30
Add '/api/v1/auth/preferences'
This commit is contained in:
parent
734905d1f7
commit
8a525bc131
@ -4388,15 +4388,26 @@ get "/api/v1/auth/notifications" do |env|
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# TODO
|
get "/api/v1/auth/preferences" do |env|
|
||||||
# get "/api/v1/auth/preferences" do |env|
|
env.response.content_type = "application/json"
|
||||||
# ...
|
user = env.get("user").as(User)
|
||||||
# end
|
user.preferences.to_json
|
||||||
|
end
|
||||||
|
|
||||||
# TODO
|
post "/api/v1/auth/preferences" do |env|
|
||||||
# post "/api/v1/auth/preferences" do |env|
|
env.response.content_type = "application/json"
|
||||||
# ...
|
user = env.get("user").as(User)
|
||||||
# end
|
|
||||||
|
begin
|
||||||
|
preferences = Preferences.from_json(env.request.body || "{}")
|
||||||
|
rescue
|
||||||
|
preferences = user.preferences
|
||||||
|
end
|
||||||
|
|
||||||
|
PG_DB.exec("UPDATE users SET preferences = $1 WHERE email = $2", preferences.to_json, user.email)
|
||||||
|
|
||||||
|
env.response.status_code = 204
|
||||||
|
end
|
||||||
|
|
||||||
get "/api/v1/auth/subscriptions" do |env|
|
get "/api/v1/auth/subscriptions" do |env|
|
||||||
env.response.content_type = "application/json"
|
env.response.content_type = "application/json"
|
||||||
|
Loading…
Reference in New Issue
Block a user