forked from loafle/openapi-generator-original
Fix typescript generator for parameter collectionFormat for pipes ssv (#6553)
Co-authored-by: David Biesack <David.Biesack@apiture.com> Co-authored-by: William Cheng <wing328hk@gmail.com> Co-authored-by: Vikrant Balyan <vvb@users.noreply.github.com> Co-authored-by: Michele Albano <michele.albano@gmail.com> Co-authored-by: Esteban Gehring <esteban.gehring@bithost.ch>
This commit is contained in:
@@ -2020,7 +2020,7 @@ class FakeApi(object):
|
||||
collection_formats['ioutil'] = 'csv' # noqa: E501
|
||||
if 'http' in local_var_params and local_var_params['http'] is not None: # noqa: E501
|
||||
query_params.append(('http', local_var_params['http'])) # noqa: E501
|
||||
collection_formats['http'] = 'space' # noqa: E501
|
||||
collection_formats['http'] = 'ssv' # noqa: E501
|
||||
if 'url' in local_var_params and local_var_params['url'] is not None: # noqa: E501
|
||||
query_params.append(('url', local_var_params['url'])) # noqa: E501
|
||||
collection_formats['url'] = 'csv' # noqa: E501
|
||||
|
||||
Reference in New Issue
Block a user