Skip to content

Commit 921eb54

Browse files
committed
Add PSSO registration needs repair status in getDeviceInfo psso status
1 parent 1d64572 commit 921eb54

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

MSAL/src/MSALDeviceInformation.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ - (MSALPlatformSSOStatus)msalPlatformSSOStatusFromMSIDPlatformSSOStatus:(MSIDPla
116116
return MSALPlatformSSOEnabledNotRegistered;
117117
case MSIDPlatformSSOEnabledAndRegistered:
118118
return MSALPlatformSSOEnabledAndRegistered;
119+
case MSIDPlatformSSORegistrationNeedsRepair:
120+
return MSALPlatformSSORegistrationNeedsRepair;
119121

120122
default:
121123
return MSALPlatformSSONotEnabled;

MSAL/src/public/MSALDefinitions.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,11 @@ typedef NS_ENUM(NSUInteger, MSALPlatformSSOStatus)
175175
/*
176176
Administrator has configured Platform SSO in sso config and the device is registred with AAD via platform SSO
177177
*/
178-
MSALPlatformSSOEnabledAndRegistered
178+
MSALPlatformSSOEnabledAndRegistered,
179+
/*
180+
Platform SSO registration on device is not valid , needs repair
181+
*/
182+
MSALPlatformSSORegistrationNeedsRepair
179183
};
180184

181185
/**

0 commit comments

Comments
 (0)