diff --git a/pkg/connector/provider/dotfile.go b/pkg/connector/provider/dotfile.go index 595be000b..2b55fa81d 100644 --- a/pkg/connector/provider/dotfile.go +++ b/pkg/connector/provider/dotfile.go @@ -32,9 +32,10 @@ import ( func dotfileRegistration() *Registration { return &Registration{ - Provider: coredata.ConnectorProviderDotfile, - DisplayName: "Dotfile", - SupportsAPIKey: true, + Provider: coredata.ConnectorProviderDotfile, + DisplayName: "Dotfile", + DocumentationURL: accessReviewDocsURL("dotfile"), + SupportsAPIKey: true, // Dotfile authenticates with the API key in the X-DOTFILE-API-KEY // header rather than Authorization: Bearer. APIKeyHeader makes the // APIKeyConnection send that header and omit Authorization. The key is diff --git a/pkg/connector/provider/segment.go b/pkg/connector/provider/segment.go index bce9d773f..8d7ccccdf 100644 --- a/pkg/connector/provider/segment.go +++ b/pkg/connector/provider/segment.go @@ -33,9 +33,10 @@ import ( func segmentRegistration() *Registration { return &Registration{ - Provider: coredata.ConnectorProviderSegment, - DisplayName: "Segment", - SupportsAPIKey: true, + Provider: coredata.ConnectorProviderSegment, + DisplayName: "Segment", + DocumentationURL: accessReviewDocsURL("segment"), + SupportsAPIKey: true, // Segment authenticates with a Public API token as the default // Authorization: Bearer scheme, so no APIKeyHeader. The token is bound // to one workspace, but the workspace's region selects the API host