Add per-site authorize URL and per-domain token URL OAuth2 plumbing

Signed-off-by: Aurélien Sibiril <81782+aureliensibiril@users.noreply.github.com>
This commit is contained in:
Aurélien Sibiril
2026-05-29 14:48:30 +02:00
parent 5effc4bbf9
commit 082772465d
7 changed files with 296 additions and 10 deletions

View File

@@ -39,6 +39,11 @@ type (
// existing connector: the callback updates the row in place
// instead of creating a new one.
ConnectorID string
// Site selects a per-customer region/site for multi-site
// providers (e.g. Datadog). Consumed by the connector's
// Registration.BuildAuthURLForSite. Empty for single-site
// providers.
Site string
}
Connector interface {