We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a4f396 commit 78d86b5Copy full SHA for 78d86b5
internals/proxy/proxy.go
@@ -66,6 +66,8 @@ func getAuthType(str string) AuthType {
66
func renderTemplate(name string, tmplStr string, data any) (string, error) {
67
tmpl, err := template.New(name).Parse(tmplStr)
68
69
+ // TODO: Escape Arrays inside of strings "{{ .ARRAY }}" => [ 1, 2, 3 ]
70
+
71
if err != nil {
72
return "", err
73
}
0 commit comments