From 5504093591b40bc8e44d8a85b61715306dacc44f Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Sun, 11 May 2025 13:15:25 +0200 Subject: [PATCH] Update access code for DocumentForwarded constant Changed the value of the constant `DocumentForwarded` from `4001` to `2006` to align it with the other access codes, which are now consistently in the range of `2001` to `2009`. --- EnvelopeGenerator.Common/Constants.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EnvelopeGenerator.Common/Constants.vb b/EnvelopeGenerator.Common/Constants.vb index 2e61cefb..9d123767 100644 --- a/EnvelopeGenerator.Common/Constants.vb +++ b/EnvelopeGenerator.Common/Constants.vb @@ -20,7 +20,7 @@ AccessCodeIncorrect = 2003 DocumentOpened = 2004 DocumentSigned = 2005 - DocumentForwarded = 4001 + DocumentForwarded = 2006 DocumentRejected = 2007 EnvelopeShared = 2008 EnvelopeViewed = 2009