Skip to content

Commit

Permalink
Merge pull request #681 from swimos/http_lane
Browse files Browse the repository at this point in the history
Adds missing HTTP PUT mapping for HTTP lanes
  • Loading branch information
SirCipher authored Jul 1, 2024
2 parents e3bf823 + f99329a commit 4f5f693
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions api/swimos_api/src/http/method.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ fn methods() -> &'static HashMap<http::Method, Method> {
m.insert(http::Method::GET, Method::GET);
m.insert(http::Method::HEAD, Method::HEAD);
m.insert(http::Method::POST, Method::POST);
m.insert(http::Method::PUT, Method::PUT);
m.insert(http::Method::DELETE, Method::DELETE);
m.insert(http::Method::CONNECT, Method::CONNECT);
m.insert(http::Method::OPTIONS, Method::OPTIONS);
Expand Down

0 comments on commit 4f5f693

Please sign in to comment.