-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[identity] Fix MSAL Flow additionallyAllowedTenantIds to pass through #23704
Conversation
API change check API changes are not detected in this pull request. |
@@ -29,7 +29,7 @@ describe("OnBehalfOfCredential", function () { | |||
userAssertionToken: "user-assertion", | |||
}); | |||
|
|||
const newMSALClientLogs = () => | |||
const newMSALClientLogs = (): number => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is just for clarity right? was it causing some issue? curious to know @mpodwysocki
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe a lint thing, it's common to enforce explicitly declaring return types to avoid accidentally returning the wrong thing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice fix!
@@ -29,7 +29,7 @@ describe("OnBehalfOfCredential", function () { | |||
userAssertionToken: "user-assertion", | |||
}); | |||
|
|||
const newMSALClientLogs = () => | |||
const newMSALClientLogs = (): number => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe a lint thing, it's common to enforce explicitly declaring return types to avoid accidentally returning the wrong thing
We'll need the same changes for msalBrowserCommon |
Packages impacted by this PR
Issues associated with this PR
Describe the problem that is addressed by this PR
The
additionallyAllowedTenantIds
was not passed through to the baseMsalFlow
class to allow it to resolve the additionally allowed tenant IDs in thegetToken()
method. This fixes this bug and also fixes some minor ESLint issues.What are the possible designs available to address the problem? If there are more than one possible design, why was the one in this PR chosen?
Are there test cases added in this PR? (If not, why?)
Provide a list of related PRs (if any)
Command used to generate this PR:**(Applicable only to SDK release request PRs)
Checklists