diff options
| author | Omar Roth <omarroth@protonmail.com> | 2019-05-27 08:35:04 -0500 |
|---|---|---|
| committer | Omar Roth <omarroth@protonmail.com> | 2019-05-27 08:35:38 -0500 |
| commit | 29e9e0f2cc9d0d81ef2978c8f9dfc1810588bd0d (patch) | |
| tree | e85d1d922e7a4304d0f1aa3f726795672e0df056 /src/invidious.cr | |
| parent | 2933093e178ee0eab235b5ec286697909a91c187 (diff) | |
| download | invidious-29e9e0f2cc9d0d81ef2978c8f9dfc1810588bd0d.tar.gz invidious-29e9e0f2cc9d0d81ef2978c8f9dfc1810588bd0d.tar.bz2 invidious-29e9e0f2cc9d0d81ef2978c8f9dfc1810588bd0d.zip | |
Provide empty response on 204
Diffstat (limited to 'src/invidious.cr')
| -rw-r--r-- | src/invidious.cr | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/invidious.cr b/src/invidious.cr index b37550e2..a7cd137c 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -4473,6 +4473,7 @@ post "/api/v1/auth/preferences" do |env| 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| @@ -4521,6 +4522,7 @@ post "/api/v1/auth/subscriptions/:ucid" do |env| # YouTube. env.response.status_code = 204 + "" end delete "/api/v1/auth/subscriptions/:ucid" do |env| @@ -4537,6 +4539,7 @@ delete "/api/v1/auth/subscriptions/:ucid" do |env| PG_DB.exec("NOTIFY feeds, E'#{payload}'") env.response.status_code = 204 + "" end get "/api/v1/auth/tokens" do |env| @@ -4643,6 +4646,7 @@ post "/api/v1/auth/tokens/unregister" do |env| end env.response.status_code = 204 + "" end get "/api/manifest/dash/id/videoplayback" do |env| |
