#1809 replacing JSOG with JSON which is provided by the browser.

This commit is contained in:
Kristof Vrolijkx 2016-04-19 13:25:28 +02:00
parent c3dfa5dbab
commit d2510b6593

View File

@ -72,7 +72,7 @@ export class {{classname}} {
search: queryParameters
};
{{#bodyParam}}
requestOptions.body = JSOG.stringify({{paramName}});
requestOptions.body = JSON.stringify({{paramName}});
{{/bodyParam}}
{{#hasFormParams}}
requestOptions.body = formParams.toString();