Add Okta logo and API-key dialog mapping

Add the Okta brand mark to the ThirdParties atoms (export, logo map,
and ThirdPartyLogo wiring) and map the generic "domain" extra setting
to the oktaDomain field in the add-access-source dialog so the
API-key connect flow submits the org domain.

Signed-off-by: Aurélien Sibiril <81782+aureliensibiril@users.noreply.github.com>
This commit is contained in:
Aurélien Sibiril
2026-06-04 14:45:21 +02:00
parent 03827704ec
commit 06f3f8aecf
4 changed files with 24 additions and 0 deletions

View File

@@ -142,6 +142,9 @@ function mapAPIKeyExtraSettingToField(
if (settingKey === "region") return "posthogRegion";
if (settingKey === "instanceUrl") return "posthogInstanceUrl";
break;
case "OKTA":
if (settingKey === "domain") return "oktaDomain";
break;
}
return null;
}