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

* job to delete trashed items nightly * remove script from migration project file * admin setting for controlling trash deleting dates
17 lines
447 B
C#
17 lines
447 B
C#
namespace Bit.Admin
|
|
{
|
|
public class AdminSettings
|
|
{
|
|
public virtual string Admins { get; set; }
|
|
public virtual CloudflareSettings Cloudflare { get; set; }
|
|
public int? DeleteTrashDaysAgo { get; set; }
|
|
|
|
public class CloudflareSettings
|
|
{
|
|
public string ZoneId { get; set; }
|
|
public string AuthEmail { get; set; }
|
|
public string AuthKey { get; set; }
|
|
}
|
|
}
|
|
}
|