Skip to content

Commit

Permalink
Pass organization_id when creating/updating SAML connection
Browse files Browse the repository at this point in the history
  • Loading branch information
LauraBeatris committed Dec 17, 2024
1 parent 8eb6cf0 commit b6a4201
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/backend/src/api/endpoints/SamlConnectionApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ type CreateSamlConnectionParams = {
name: string;
provider: SamlIdpSlug;
domain: string;
organizationId?: string;
idpEntityId?: string;
idpSsoUrl?: string;
idpCertificate?: string;
Expand All @@ -31,6 +32,7 @@ type UpdateSamlConnectionParams = {
name?: string;
provider?: SamlIdpSlug;
domain?: string;
organizationId?: string;
idpEntityId?: string;
idpSsoUrl?: string;
idpCertificate?: string;
Expand Down

0 comments on commit b6a4201

Please sign in to comment.