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

Fix empty grantee or grantor names in emergency access emails (#1162)

* Fix empty grantee or grantor names in emails

* Add migrator dbscript for changes to ReadToNotify
This commit is contained in:
Thomas Rittson
2021-02-26 08:11:58 +10:00
committed by GitHub
parent b21c9042ca
commit 3850f0e400
4 changed files with 42 additions and 5 deletions

View File

@ -10,5 +10,6 @@ namespace Bit.Core.Models.Data
{
public string GrantorEmail { get; set; }
public string GranteeName { get; set; }
public string GranteeEmail { get; set; }
}
}