From c6c8747d2341b608208d0f5fd4d632c281a171b7 Mon Sep 17 00:00:00 2001 From: TekH Date: Tue, 3 Feb 2026 16:10:14 +0100 Subject: [PATCH] Add ReceiverTFA constant to AuthPolicy class Added the ReceiverTFA constant to the AuthPolicy class in the EnvelopeGenerator.Domain.Constants namespace. This new constant can be used to represent authentication policies specific to two-factor authentication for receivers. --- EnvelopeGenerator.Domain/Constants/AuthPolicy.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/EnvelopeGenerator.Domain/Constants/AuthPolicy.cs b/EnvelopeGenerator.Domain/Constants/AuthPolicy.cs index a20afb23..88b1186d 100644 --- a/EnvelopeGenerator.Domain/Constants/AuthPolicy.cs +++ b/EnvelopeGenerator.Domain/Constants/AuthPolicy.cs @@ -4,5 +4,6 @@ namespace EnvelopeGenerator.Domain.Constants { public const string SenderOrReceiver = nameof(SenderOrReceiver) + nameof(AuthPolicy); public const string Receiver = nameof(Receiver) + nameof(AuthPolicy); + public const string ReceiverTFA = nameof(ReceiverTFA) + nameof(AuthPolicy); } }