Bugfix/3929 do not set multipart (#3932)

* Do not set Content-Type to multipart/form-data
It causes superagent to not add the boundary in the Content-Type

* Run shell-scripts
This commit is contained in:
Andreas Franzén
2016-10-08 06:36:56 +02:00
committed by wing328
parent 04070b32c1
commit d21613c6ab
12 changed files with 106 additions and 94 deletions

View File

@@ -90,7 +90,8 @@ var opts = {
'binary': "B", // String | None
'_date': new Date("2013-10-20"), // Date | None
'dateTime': new Date("2013-10-20T19:20:30+01:00"), // Date | None
'password': "password_example" // String | None
'password': "password_example", // String | None
'callback': "callback_example" // String | None
};
var callback = function(error, data, response) {
@@ -120,6 +121,7 @@ Name | Type | Description | Notes
**_date** | **Date**| None | [optional]
**dateTime** | **Date**| None | [optional]
**password** | **String**| None | [optional]
**callback** | **String**| None | [optional]
### Return type