Skip to content

Commit 417e079

Browse files
author
Swasti Gupta
committed
Resolved comments
1 parent 22ff3ed commit 417e079

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

MSAL/src/configuration/external/ios/MSALLegacySharedADALAccount.m

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ @interface MSALLegacySharedADALAccount()
3939
@property (nonatomic, readwrite) NSString *environment;
4040
@property (nonatomic, readwrite) NSString *identifier;
4141
@property (nonatomic, readwrite) NSDictionary *accountClaims;
42+
@property (nonatomic, readwrite) NSArray<MSALTenantProfile *> *tenantProfiles;
43+
@property (nonatomic, readwrite) MSALAccountId *homeAccountId;
44+
@property (nonatomic, readwrite) BOOL isSSOAccount;
4245

4346
@end
4447

MSAL/src/configuration/external/ios/MSALLegacySharedAccount.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525

2626
@class MSIDJsonObject;
2727
@class MSALAccountEnumerationParameters;
28-
@class MSALAccountId;
2928
@protocol MSALAccount;
3029

3130
// Every time there's a new field added, version update is required
@@ -57,9 +56,6 @@ NS_ASSUME_NONNULL_BEGIN
5756
@property (nonatomic, readonly) NSString *accountIdentifier;
5857
@property (nonatomic, readonly) NSDictionary *signinStatusDictionary;
5958
@property (nonatomic, readonly) NSString *username;
60-
@property (nonatomic, readonly) NSArray<MSALTenantProfile *> *tenantProfiles;
61-
@property (nonatomic, readonly) MSALAccountId *homeAccountId;
62-
@property (nonatomic, readonly) BOOL isSSOAccount;
6359

6460
- (nullable instancetype)initWithJSONDictionary:(NSDictionary *)jsonDictionary error:(NSError * _Nullable * _Nullable)error;
6561
- (BOOL)matchesParameters:(MSALAccountEnumerationParameters *)parameters;

MSAL/src/configuration/external/ios/MSALLegacySharedAccount.m

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ @interface MSALLegacySharedAccount()
3131

3232
@property (nonatomic, readwrite) NSDictionary *jsonDictionary;
3333
@property (nonatomic, readwrite) NSString *username;
34-
@property (nonatomic, readwrite) NSArray<MSALTenantProfile *> *tenantProfiles;
35-
@property (nonatomic, readwrite) MSALAccountId *homeAccountId;
36-
@property (nonatomic, readwrite) BOOL isSSOAccount;
3734
@end
3835

3936
static NSDateFormatter *s_updateDateFormatter = nil;

MSAL/src/configuration/external/ios/MSALLegacySharedMSAAccount.m

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ @interface MSALLegacySharedMSAAccount()
3737
@property (nonatomic, readwrite) NSString *environment;
3838
@property (nonatomic, readwrite) NSString *identifier;
3939
@property (nonatomic, readwrite) NSDictionary *accountClaims;
40-
40+
@property (nonatomic, readwrite) NSArray<MSALTenantProfile *> *tenantProfiles;
41+
@property (nonatomic, readwrite) MSALAccountId *homeAccountId;
42+
@property (nonatomic, readwrite) BOOL isSSOAccount;
4143
@end
4244

4345
static NSString *kDefaultCacheAuthority = @"https://login.windows.net/common";

0 commit comments

Comments
 (0)