Changes between Initial Version and Version 2 of Ticket #13519
- Timestamp:
- Jul 9, 2015, 12:24:54 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13519
-
Property
Summary
changed from
Response should be more flexible.
toResponse should be more flexible
-
Property
Summary
changed from
-
Ticket #13519 – Description
initial v2 1 Additional parameters in the response should be handled. Default `fileUploadResponse` handler should pass all additional JSON data to the `data`. 1 Additional parameters in the response should be handled. Default `fileUploadResponse` handler should pass all additional JSON data to the `data`. So for example response with `height` and `width` parameters: 2 { 3 "uploaded": 1, 4 "fileName": "foo.jpg", 5 "url": "/files/foo.jpg", 6 "height: 90, 7 "width": 160 8 } 9 10 Should set `evt.data.width = 160` and `evt.data.height = 90`.