diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-06-11 12:47:36 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-06-11 12:47:36 +0900 |
commit | 886d8c585fbd3efe6fd298f8d5b5f980c752deae (patch) | |
tree | 3b7a4c8d238e244728d2cfbfc4085f4a8b1ff83c /lib/csapi/{{base}}.cpp.mustache | |
parent | 4fc03b25639df302f4a1dc02666d785ba4dfcade (diff) | |
download | libquotient-886d8c585fbd3efe6fd298f8d5b5f980c752deae.tar.gz libquotient-886d8c585fbd3efe6fd298f8d5b5f980c752deae.zip |
gtad.yaml: More concise list joining
Diffstat (limited to 'lib/csapi/{{base}}.cpp.mustache')
-rw-r--r-- | lib/csapi/{{base}}.cpp.mustache | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/csapi/{{base}}.cpp.mustache b/lib/csapi/{{base}}.cpp.mustache index 0800fef7..4526bc79 100644 --- a/lib/csapi/{{base}}.cpp.mustache +++ b/lib/csapi/{{base}}.cpp.mustache @@ -89,7 +89,7 @@ QUrl {{camelCaseOperationId}}Job::makeRequestUrl(QUrl baseUrl{{#allParams?}}, {{ }}{{^inlineBody}} QJsonObject _data;{{#bodyParams}} addParam<{{^required?}}IfNotEmpty{{/required?}}>(_data, "{{baseName}}", {{paramName}});{{/bodyParams}} setRequestData(_data);{{/inlineBody}} -{{/bodyParams?}}{{#producesNonJson?}} setExpectedContentTypes({ {{#produces}}"{{_}}"{{#@join}}, {{/@join}}{{/produces}} }); +{{/bodyParams?}}{{#producesNonJson?}} setExpectedContentTypes({ {{#produces}}"{{_}}"{{#@join,}}{{/produces}} }); {{/producesNonJson?}}}{{!<- mind the actual brace}} {{# responses}}{{#normalResponse?}}{{#allProperties?}} {{camelCaseOperationId}}Job::~{{camelCaseOperationId}}Job() = default; |