Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/config/authentication.go
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ func (a AuthenticationMethodOIDCConfig) validate() error {
// AuthenticationOIDCProvider configures provider credentials
type AuthenticationMethodOIDCProvider struct {
IssuerURL string `json:"issuerURL,omitempty" mapstructure:"issuer_url" yaml:"issuer_url,omitempty"`
ClientID string `json:"-,omitempty" mapstructure:"client_id" yaml:"-"`
ClientID string `json:"-" mapstructure:"client_id" yaml:"-"`
ClientSecret string `json:"-" mapstructure:"client_secret" yaml:"-"`
RedirectAddress string `json:"redirectAddress,omitempty" mapstructure:"redirect_address" yaml:"redirect_address,omitempty"`
Nonce string `json:"nonce,omitempty" mapstructure:"nonce" yaml:"nonce,omitempty"`
Expand Down
2 changes: 1 addition & 1 deletion internal/config/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ type StorageOCIConfig struct {
// BundlesDirectory is the root directory in which Flipt will store and access local feature bundles.
BundlesDirectory string `json:"bundlesDirectory,omitempty" mapstructure:"bundles_directory" yaml:"bundles_directory,omitempty"`
// Authentication configures authentication credentials for accessing the target registry
Authentication *OCIAuthentication `json:"-,omitempty" mapstructure:"authentication" yaml:"-,omitempty"`
Authentication *OCIAuthentication `json:"-" mapstructure:"authentication" yaml:"-"`
PollInterval time.Duration `json:"pollInterval,omitempty" mapstructure:"poll_interval" yaml:"poll_interval,omitempty"`
// ManifestVersion defines which OCI Manifest version to use.
ManifestVersion OCIManifestVersion `json:"manifestVersion,omitempty" mapstructure:"manifest_version" yaml:"manifest_version,omitempty"`
Expand Down
Loading