1
0
mirror of https://github.com/bitwarden/server synced 2026-01-09 03:53:42 +00:00

BlockIpHostedService to replace func

This commit is contained in:
Kyle Spearrin
2019-03-04 23:41:46 -05:00
parent 3c9c1a2ab7
commit 2a49824ab7
4 changed files with 252 additions and 1 deletions

View File

@@ -3,5 +3,13 @@
public class AdminSettings
{
public virtual string Admins { get; set; }
public virtual CloudflareSettings Cloudflare { get; set; }
public class CloudflareSettings
{
public string ZoneId { get; set; }
public string AuthEmail { get; set; }
public string AuthKey { get; set; }
}
}
}