Skip to content
Open
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
4 changes: 4 additions & 0 deletions api/v1alpha1/docs/apiref.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2133,6 +2133,10 @@ Optional: \{} +
| *`workatoWebHookURL`* __string__ | WorkatoWebHookURL is used by the UI to push events to Marketo for analytics purposes. +
The webhook URL is unique per environment. + | | Optional: \{} +

| *`disabledIntegrations`* __string array__ | DisabledIntegrations specifies the list of integrations that should be +
hidden/disabled in the UI. When nil or empty, all integrations are +
considered enabled. Only listed integrations are hidden. + | | Optional: \{} +

|===


Expand Down
7 changes: 7 additions & 0 deletions api/v1alpha1/toolchainconfig_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,13 @@ type RegistrationServiceConfig struct {
// The webhook URL is unique per environment.
// +optional
WorkatoWebHookURL *string `json:"workatoWebHookURL,omitempty"`

// DisabledIntegrations specifies the list of integrations that should be
// hidden/disabled in the UI. When nil or empty, all integrations are
// considered enabled. Only listed integrations are hidden.
// +optional
// +listType=set
DisabledIntegrations []string `json:"disabledIntegrations,omitempty"`
}

// RegistrationServiceAnalyticsConfig contains the subset of registration service configuration parameters related to analytics
Expand Down
5 changes: 5 additions & 0 deletions api/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions api/v1alpha1/zz_generated.openapi.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading