From 374b59bcfb508cecdaabecb87c2ee1c1bc1cebeb Mon Sep 17 00:00:00 2001 From: Todd Martin <106564991+trmartin4@users.noreply.github.com> Date: Wed, 21 Feb 2024 14:17:40 -0500 Subject: [PATCH] [PM-5947] Add self-hosted override to allow Duo redirect flow (#3818) --- src/Core/Constants.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Core/Constants.cs b/src/Core/Constants.cs index f534fd7a1e..ab78000064 100644 --- a/src/Core/Constants.cs +++ b/src/Core/Constants.cs @@ -147,7 +147,8 @@ public static class FeatureFlagKeys return new Dictionary() { { TrustedDeviceEncryption, "true" }, - { Fido2VaultCredentials, "true" } + { Fido2VaultCredentials, "true" }, + { DuoRedirect, "true" } }; } }