Eyal Keren
Eyal Keren
### Use Case You can now select the destination name and folder for any file that you upload using wing console ### Proposed Solution _No response_ ### Implementation Notes _No...
### I tried this: ```ts bring cloud; bring http; let api = new cloud.Api(); test "api should return 200 on /health-check" { assert( http.get(api.url + "/health-check"). //
### Use Case You can now use `bring ui` for inputs for any Wing struct Here is an example for something like `bring congnito` ```wing bring ui; struct User {...
### I tried this: ```wing bring cloud; let api = new cloud.Api(); let handler = inflight () => {}; api.get("/shared-handler" , handler); api.post("/shared-handler" , handler); api.get("/private-handler" , inflight () =>...