1
0
Fork 0

fix http methods

This commit is contained in:
Cyborus 2024-01-18 18:15:09 -05:00
parent 194a1b5e36
commit 63c6dc9f7f
No known key found for this signature in database

View file

@ -153,12 +153,12 @@ impl Forgejo {
fn delete(&self, path: &str) -> reqwest::RequestBuilder {
let url = self.url.join("api/v1/").unwrap().join(path).unwrap();
self.client.post(url)
self.client.delete(url)
}
fn patch(&self, path: &str) -> reqwest::RequestBuilder {
let url = self.url.join("api/v1/").unwrap().join(path).unwrap();
self.client.post(url)
self.client.patch(url)
}
async fn execute(&self, request: Request) -> Result<reqwest::Response, ForgejoError> {