diff options
author | Adam T. Carpenter <atc@53hor.net> | 2020-10-31 15:46:35 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2020-10-31 15:46:35 -0400 |
commit | 9480317011b57d3be7b903048f4a85d02979c7c7 (patch) | |
tree | 68e24ac991119c2b1dccabd22bdea615f55fbe3c /dichroism/src/handlers.rs | |
parent | 050e40c03900827057ab5db2f6bbe971a6408fda (diff) | |
download | theglassyladies-9480317011b57d3be7b903048f4a85d02979c7c7.tar.xz theglassyladies-9480317011b57d3be7b903048f4a85d02979c7c7.zip |
finished up handlers, moved/added test data
Diffstat (limited to 'dichroism/src/handlers.rs')
-rw-r--r-- | dichroism/src/handlers.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dichroism/src/handlers.rs b/dichroism/src/handlers.rs index 0480abf..5d678f5 100644 --- a/dichroism/src/handlers.rs +++ b/dichroism/src/handlers.rs @@ -79,6 +79,7 @@ async fn post_product( post: web::Json<ProductPost>, ) -> Result<HttpResponse, Error> { let post = post.into_inner(); + dbg!(&post); // create new photo_set let data_uri = post.photo_data; |