mirror of
https://github.com/bitwarden/server.git
synced 2025-07-03 00:52:49 -05:00
add support for azuresignalr services
This commit is contained in:
@ -19,7 +19,7 @@ namespace Bit.Core
|
||||
public virtual MailSettings Mail { get; set; } = new MailSettings();
|
||||
public virtual StorageSettings Storage { get; set; } = new StorageSettings();
|
||||
public virtual StorageSettings Events { get; set; } = new StorageSettings();
|
||||
public virtual StorageSettings Notifications { get; set; } = new StorageSettings();
|
||||
public virtual NotificationsSettings Notifications { get; set; } = new NotificationsSettings();
|
||||
public virtual AttachmentSettings Attachment { get; set; } = new AttachmentSettings();
|
||||
public virtual IdentityServerSettings IdentityServer { get; set; } = new IdentityServerSettings();
|
||||
public virtual DataProtectionSettings DataProtection { get; set; } = new DataProtectionSettings();
|
||||
@ -129,6 +129,11 @@ namespace Bit.Core
|
||||
public string Dsn { get; set; }
|
||||
}
|
||||
|
||||
public class NotificationsSettings : StorageSettings
|
||||
{
|
||||
public string AzureSignalRConnectionString { get; set; }
|
||||
}
|
||||
|
||||
public class NotificationHubSettings
|
||||
{
|
||||
private string _connectionString;
|
||||
|
Reference in New Issue
Block a user