1
1
mirror of https://github.com/VKCOM/vk-ios-sdk.git synced 2024-09-11 06:45:37 +03:00

Changed documentation wording for VKAuthorizationOptionsEnableProviders

This commit is contained in:
Valeriy Zhuravlev 2022-11-14 09:30:18 +03:00
parent d072cdf9cc
commit 653bf90720

View File

@ -48,8 +48,9 @@ typedef NS_OPTIONS(NSUInteger, VKAuthorizationOptions) {
VKAuthorizationOptionsUnlimitedToken = 1 << 0,
///Pass this option to disable usage of SFSafariViewController
VKAuthorizationOptionsDisableSafariController = 1 << 1,
///This option does not affect authorization parameters in any way
VKAuthorizationOptionsEnableProviders DEPRECATED_MSG_ATTRIBUTE("This option does not affect authorization parameters in any way") = 1 << 2,
///VKAuthorizationOptionsEnableProviders is deprecated. Now the transition to the authorization provider is performed automatically.
///To disable the transition, use the VKAuthorizationOptionsDisableProviders option.
VKAuthorizationOptionsEnableProviders DEPRECATED_MSG_ATTRIBUTE("Now the transition to the authorization provider is performed automatically. To disable the transition, use the VKAuthorizationOptionsDisableProviders option.") = 1 << 2,
///Pass this option to disable usage of authorization providers
VKAuthorizationOptionsDisableProviders = 1 << 3
};