1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -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
No known key found for this signature in database
GPG Key ID: C4B27F601CE4317D

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; }
}