Gregory Essertel

Results 1 comments of Gregory Essertel

if someone want a stop gap solution by overriding the mustache templates: create a new file: `responseCode.mustache` ``` {{#is1xx}}{{{code}}}{{/is1xx}}{{#is2xx}}{{{code}}}{{/is2xx}}{{#is3xx}}{{{code}}}{{/is3xx}}{{#is4xx}}{{{code}}}{{/is4xx}}{{#is5xx}}{{{code}}}{{/is5xx}}{{^is1xx}}{{^is2xx}}{{^is3xx}}{{^is4xx}}{{^is5xx}}default{{/is5xx}}{{/is4xx}}{{/is3xx}}{{/is2xx}}{{/is1xx}} ``` and then override the `api.mustache`, `apiController.mustache`, and `apiDelegate.mustache` replacing `{{code}}`...