Update ReferenceType enum and clean up status handling

Modified the `ReferenceType` enum in `Constants.vb` to change the values for `Sender` and `Receiver`. Removed the `ReferenceType` and `StatusName` properties from `EnvelopeHistory.cs`. Updated status code comments in `HistoryController.cs`, adding new codes for `EnvelopeRejected` and `EnvelopeWithdrawn`, and adjusted parameter descriptions to align with the new enum values.
This commit is contained in:
Developer 02
2025-05-11 14:27:28 +02:00
parent 5504093591
commit 3fa113003c
3 changed files with 8 additions and 27 deletions

View File

@@ -48,8 +48,8 @@
'TODO: standardize in xwiki
Public Enum ReferenceType
Receiver = 0
Sender
Sender = 1
Receiver
System
Unknown
End Enum