summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Reeder <colin@vpzom.click>2020-08-08 08:47:21 -0600
committerColin Reeder <colin@vpzom.click>2020-08-08 08:47:21 -0600
commit44f56e25da2ffab8faf34f44c0b9e4d4c434e699 (patch)
tree6e6c872f88068a09b792741c497bbbd6c5757daa
parentc03de98fbb1f4769e3d9917ba87d6041d9c91dfe (diff)
Use new vote APIs
-rw-r--r--src/routes/mod.rs8
-rw-r--r--src/routes/posts.rs12
2 files changed, 10 insertions, 10 deletions
diff --git a/src/routes/mod.rs b/src/routes/mod.rs
index 0c8969f..e3d6c76 100644
--- a/src/routes/mod.rs
+++ b/src/routes/mod.rs
@@ -461,8 +461,8 @@ async fn handler_comment_like(
res_to_error(
ctx.http_client
.request(for_client(
- hyper::Request::post(format!(
- "{}/api/unstable/comments/{}/like",
+ hyper::Request::put(format!(
+ "{}/api/unstable/comments/{}/your_vote",
ctx.backend_host, comment_id
))
.body(Default::default())?,
@@ -504,8 +504,8 @@ async fn handler_comment_unlike(
res_to_error(
ctx.http_client
.request(for_client(
- hyper::Request::post(format!(
- "{}/api/unstable/comments/{}/unlike",
+ hyper::Request::delete(format!(
+ "{}/api/unstable/comments/{}/your_vote",
ctx.backend_host, comment_id
))
.body(Default::default())?,
diff --git a/src/routes/posts.rs b/src/routes/posts.rs
index 7bb85bf..9223f13 100644
--- a/src/routes/posts.rs
+++ b/src/routes/posts.rs
@@ -267,11 +267,11 @@ async fn handler_post_like(
res_to_error(
ctx.http_client
.request(for_client(
- hyper::Request::post(format!(
- "{}/api/unstable/posts/{}/like",
+ hyper::Request::put(format!(
+ "{}/api/unstable/posts/{}/your_vote",
ctx.backend_host, post_id
))
- .body(Default::default())?,
+ .body("{}".into())?,
req.headers(),
&cookies,
)?)
@@ -302,7 +302,7 @@ async fn page_post_likes(
ctx.http_client
.request(for_client(
hyper::Request::get(format!(
- "{}/api/unstable/posts/{}/likes",
+ "{}/api/unstable/posts/{}/votes",
ctx.backend_host, post_id,
))
.body(Default::default())?,
@@ -366,8 +366,8 @@ async fn handler_post_unlike(
res_to_error(
ctx.http_client
.request(for_client(
- hyper::Request::post(format!(
- "{}/api/unstable/posts/{}/unlike",
+ hyper::Request::delete(format!(
+ "{}/api/unstable/posts/{}/your_vote",
ctx.backend_host, post_id
))
.body(Default::default())?,