-
Notifications
You must be signed in to change notification settings - Fork 36
Veena/mob onb2 #1689
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
base: dev
Are you sure you want to change the base?
Veena/mob onb2 #1689
Changes from 11 commits
7bf286a
5d3b3fb
fa22384
dca1a48
be0546a
b731f20
1e433af
33b281e
1c0c626
54cc097
dfe40b0
4546fe4
b8f1cdd
f3b7d9b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -23,13 +23,35 @@ | |||||||||||||
|
|
||||||||||||||
| #import "MSIDLocalInteractiveController.h" | ||||||||||||||
|
|
||||||||||||||
| @class MSIDWebMDMInstallProfileResponse; | ||||||||||||||
| @class MSIDWebMDMEnrollmentCompletionResponse; | ||||||||||||||
|
|
||||||||||||||
| NS_ASSUME_NONNULL_BEGIN | ||||||||||||||
|
|
||||||||||||||
| @interface MSIDLocalInteractiveController () | ||||||||||||||
|
|
||||||||||||||
| /*! | ||||||||||||||
| Whether BRT acquisition has been attempted in this session. | ||||||||||||||
| BRT acquisition logic (simplified): | ||||||||||||||
| - Acquired on FIRST msauth:// or browser:// redirect if needed | ||||||||||||||
| - Only ONE attempt per session (no retry) | ||||||||||||||
|
|
||||||||||||||
| Check before acquisition: !brtAcquired && !brtAttemptAttempted | ||||||||||||||
| */ | ||||||||||||||
| @property (nonatomic, assign) BOOL brtAttempted; | ||||||||||||||
|
|
||||||||||||||
| /*! Whether BRT was successfully acquired in this session */ | ||||||||||||||
| @property (nonatomic, assign) BOOL brtAcquired; | ||||||||||||||
|
|
||||||||||||||
| - (void)acquireTokenWithRequest:(MSIDInteractiveTokenRequest *)request | ||||||||||||||
| completionBlock:(MSIDRequestCompletionBlock)completionBlock; | ||||||||||||||
|
|
||||||||||||||
| //- (void)handleWebMDMInstallProfileResponse:(MSIDWebMDMInstallProfileResponse *)mdmInstallProfileResponse | ||||||||||||||
| // completion:(MSIDRequestCompletionBlock)completionBlock; | ||||||||||||||
| // | ||||||||||||||
| //- (void)handleWebMDMEnrollmentCompletionResponse:(MSIDWebMDMEnrollmentCompletionResponse *)mdmEnrollmentCompletionResponse | ||||||||||||||
| // completion:(MSIDRequestCompletionBlock)completionBlock; | ||||||||||||||
|
Comment on lines
+49
to
+53
|
||||||||||||||
| //- (void)handleWebMDMInstallProfileResponse:(MSIDWebMDMInstallProfileResponse *)mdmInstallProfileResponse | |
| // completion:(MSIDRequestCompletionBlock)completionBlock; | |
| // | |
| //- (void)handleWebMDMEnrollmentCompletionResponse:(MSIDWebMDMEnrollmentCompletionResponse *)mdmEnrollmentCompletionResponse | |
| // completion:(MSIDRequestCompletionBlock)completionBlock; | |
| // TODO: Add internal MDM web response handling methods here if/when MDM flows are implemented. |
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.
Comment has a typo: "Attemptted" should be "Attempted" (double 't' should be single 't').