mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00

* convert `AdminOwnerEmails` to List rather than IEnumerable * check for JSON array in `formatAdminOwnerEmails` * remove trailing comma for admin/owners * Use display block on tables to enforce padding * update padding around review at-risk passwords
15 lines
375 B
C#
15 lines
375 B
C#
namespace Bit.Core.Models.Mail;
|
|
|
|
public class SecurityTaskNotificationViewModel : BaseMailModel
|
|
{
|
|
public string OrgName { get; set; }
|
|
|
|
public int TaskCount { get; set; }
|
|
|
|
public bool TaskCountPlural => TaskCount != 1;
|
|
|
|
public List<string> AdminOwnerEmails { get; set; }
|
|
|
|
public string ReviewPasswordsUrl => $"{WebVaultUrl}/browser-extension-prompt";
|
|
}
|