From 27fdeb698fe70ba3bcc77e44da035e006b0012ef Mon Sep 17 00:00:00 2001 From: Doug Date: Tue, 19 Jul 2022 09:43:08 +0100 Subject: [PATCH] Enable authentication and personalisation flows. --- Config/BuildSettings.swift | 4 ++-- changelog.d/5151.feature | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 changelog.d/5151.feature diff --git a/Config/BuildSettings.swift b/Config/BuildSettings.swift index 31f0c737a3..ae0e1cb332 100644 --- a/Config/BuildSettings.swift +++ b/Config/BuildSettings.swift @@ -384,8 +384,8 @@ final class BuildSettings: NSObject { static let authEnableRefreshTokens = false // MARK: - Onboarding - static let onboardingShowAccountPersonalization = false - static let onboardingEnableNewAuthenticationFlow = false + static let onboardingShowAccountPersonalization = true + static let onboardingEnableNewAuthenticationFlow = true // MARK: - Unified Search static let unifiedSearchScreenShowPublicDirectory = true diff --git a/changelog.d/5151.feature b/changelog.d/5151.feature new file mode 100644 index 0000000000..c0b37238c9 --- /dev/null +++ b/changelog.d/5151.feature @@ -0,0 +1 @@ +Enable the new authentication and personalisation flows in the onboarding coordinator.