mirror of
https://github.com/bitwarden/server
synced 2025-12-17 00:33:23 +00:00
attachment apis and azure storage service
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
public virtual MailSettings Mail { get; set; } = new MailSettings();
|
||||
public virtual PushSettings Push { get; set; } = new PushSettings();
|
||||
public virtual StorageSettings Storage { get; set; } = new StorageSettings();
|
||||
public virtual AttachmentSettings Attachment { get; set; } = new AttachmentSettings();
|
||||
public virtual IdentityServerSettings IdentityServer { get; set; } = new IdentityServerSettings();
|
||||
public virtual DataProtectionSettings DataProtection { get; set; } = new DataProtectionSettings();
|
||||
public virtual DocumentDbSettings DocumentDb { get; set; } = new DocumentDbSettings();
|
||||
@@ -26,6 +27,12 @@
|
||||
public string ConnectionString { get; set; }
|
||||
}
|
||||
|
||||
public class AttachmentSettings
|
||||
{
|
||||
public string ConnectionString { get; set; }
|
||||
public string BaseUrl { get; set; }
|
||||
}
|
||||
|
||||
public class MailSettings
|
||||
{
|
||||
public string ReplyToEmail { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user