1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-10 12:24:50 -05:00

Encrypt the notes field

This commit is contained in:
Jonas Hendrickx
2025-03-26 12:35:39 +01:00
parent 052c2dd043
commit f6143b12d6

View File

@ -23,5 +23,7 @@ public class OrganizationSponsorshipCreateRequestModel
/// <remarks>Left empty when creating a sponsorship for the authenticated user.</remarks>
public Guid? SponsoringUserId { get; set; }
[EncryptedString]
[EncryptedStringLength(512)]
public string Notes { get; set; }
}