github.com/argoproj/argo-cd/v2@v2.10.9/reposerver/apiclient/repository.go (about) 1 package apiclient 2 3 func (q *ManifestRequest) GetValuesFileSchemes() []string { 4 if q.HelmOptions == nil { 5 return nil 6 } 7 return q.HelmOptions.ValuesFileSchemes 8 } 9 10 func (q *RepoServerAppDetailsQuery) GetValuesFileSchemes() []string { 11 if q.HelmOptions == nil { 12 return nil 13 } 14 return q.HelmOptions.ValuesFileSchemes 15 }