Skip to content
This repository has been archived by the owner on Nov 13, 2023. It is now read-only.

Commit

Permalink
Support apiml typed profiles for auto-store
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Johnson <timothy.johnson@broadcom.com>
  • Loading branch information
t1m0thyj committed Oct 9, 2023
1 parent 2743a86 commit 7482201
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/config/src/ConfigAutoStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class ConfigAutoStore {

if (profile == null || profileType == null) { // Profile must exist and have type defined
return;
} else if (profileType === "base") {
} else if (profileType === "base" || profileType === "apiml") {
if (profile.tokenType == null) { // Base profile must have tokenType defined
return;
}
Expand Down

0 comments on commit 7482201

Please sign in to comment.