|
@@ -115,14 +115,18 @@ export const sortedFlags = ({
|
|
|
|
|
|
export enum ProviderOptions {
|
|
|
LAUNCHDARKLY = 'LaunchDarkly',
|
|
|
+ GENERIC = 'Generic',
|
|
|
}
|
|
|
|
|
|
export enum IntegrationOptions {
|
|
|
LAUNCHDARKLY = 'LaunchDarkly',
|
|
|
OPENFEATURE = 'OpenFeature',
|
|
|
+ GENERIC = 'Generic',
|
|
|
}
|
|
|
|
|
|
-export const PROVIDER_OPTION_TO_URLS: Record<ProviderOptions, string> = {
|
|
|
+export const PROVIDER_OPTION_TO_URLS: Record<ProviderOptions, string | undefined> = {
|
|
|
[ProviderOptions.LAUNCHDARKLY]:
|
|
|
'https://app.launchdarkly.com/settings/integrations/webhooks/new?q=Webhooks',
|
|
|
+ [ProviderOptions.GENERIC]:
|
|
|
+ 'https://docs.sentry.io/organization/integrations/feature-flag/generic/#set-up-change-tracking',
|
|
|
};
|