github.com/argoproj/argo-cd/v3@v3.2.1/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  }