Files
bundesmessenger-ios/Riot/Modules/MatrixKit/Views/Authentication/MXKAuthenticationFallbackWebView.h
T
Mauro Romito 12837d4b89 update license
2024-09-25 12:24:52 +02:00

23 lines
642 B
Objective-C

/*
Copyright 2024 New Vector Ltd.
Copyright 2015 OpenMarket Ltd
SPDX-License-Identifier: AGPL-3.0-only
Please see LICENSE in the repository root for full details.
*/
#import <MatrixSDK/MatrixSDK.h>
#import <WebKit/WebKit.h>
@interface MXKAuthenticationFallbackWebView : WKWebView <WKNavigationDelegate>
/**
Open authentication fallback page into the webview.
@param fallbackPage the fallback page hosted by a homeserver.
@param success the block called when the user has been successfully logged in or registered.
*/
- (void)openFallbackPage:(NSString*)fallbackPage success:(void (^)(MXLoginResponse *loginResponse))success;
@end