Skip to content

Commit

Permalink
Fix typo (#410)
Browse files Browse the repository at this point in the history
  • Loading branch information
dorsha authored Oct 22, 2024
1 parent cea8297 commit 0cf407b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions lib/management/sso.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ describe('Management SSO', () => {
idpUrl: 'https://idp.url',
entityId: 'eid',
idpCert: 'bsae64cert',
spAcsUrl: 'https://spacs.url',
spACSUrl: 'https://spacs.url',
spEntityId: 'spentityid',
},
'http://redirect.com',
Expand All @@ -271,7 +271,7 @@ describe('Management SSO', () => {
idpUrl: 'https://idp.url',
entityId: 'eid',
idpCert: 'bsae64cert',
spAcsUrl: 'https://spacs.url',
spACSUrl: 'https://spacs.url',
spEntityId: 'spentityid',
},
redirectUrl: 'http://redirect.com',
Expand Down Expand Up @@ -304,7 +304,7 @@ describe('Management SSO', () => {
{
idpMetadataUrl: 'https://metadata.com',
attributeMapping: { name: 'IDP_NAME', email: 'IDP_MAIL' },
spAcsUrl: 'https://spacs.url',
spACSUrl: 'https://spacs.url',
spEntityId: 'spentityid',
},
'http://redirect.com',
Expand All @@ -318,7 +318,7 @@ describe('Management SSO', () => {
settings: {
idpMetadataUrl: 'https://metadata.com',
attributeMapping: { name: 'IDP_NAME', email: 'IDP_MAIL' },
spAcsUrl: 'https://spacs.url',
spACSUrl: 'https://spacs.url',
spEntityId: 'spentityid',
},
redirectUrl: 'http://redirect.com',
Expand Down
4 changes: 2 additions & 2 deletions lib/management/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ export type SSOSAMLSettings = {
attributeMapping?: AttributeMapping;

// NOTICE - the following fields should be overridden only in case of SSO migration, otherwise, do not modify these fields
spAcsUrl?: string;
spACSUrl?: string;
spEntityId?: string;
};

Expand All @@ -497,7 +497,7 @@ export type SSOSAMLByMetadataSettings = {
attributeMapping?: AttributeMapping;

// NOTICE - the following fields should be overridden only in case of SSO migration, otherwise, do not modify these fields
spAcsUrl?: string;
spACSUrl?: string;
spEntityId?: string;
};

Expand Down

0 comments on commit 0cf407b

Please sign in to comment.