1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 16:42:50 -05:00

more notification hub renames

This commit is contained in:
Kyle Spearrin
2018-08-16 13:50:41 -04:00
parent 80a49e53ac
commit 1ffa712b75
16 changed files with 31 additions and 31 deletions

View File

@ -25,7 +25,7 @@ namespace Bit.Core.Services
IHttpContextAccessor httpContextAccessor,
ILogger<HubApiPushNotificationService> logger)
: base(
globalSettings.BaseServiceUri.InternalHub,
globalSettings.BaseServiceUri.InternalNotifications,
globalSettings.BaseServiceUri.InternalIdentity,
"internal",
$"internal.{globalSettings.ProjectName}",

View File

@ -28,7 +28,7 @@ namespace Bit.Core.Services
_services.Add(new RelayPushNotificationService(globalSettings, httpContextAccessor, relayLogger));
}
if(CoreHelpers.SettingHasValue(globalSettings.InternalIdentityKey) &&
CoreHelpers.SettingHasValue(globalSettings.BaseServiceUri.InternalHub))
CoreHelpers.SettingHasValue(globalSettings.BaseServiceUri.InternalNotifications))
{
// _services.Add(new HubApiPushNotificationService(globalSettings, httpContextAccessor, hubLogger));
}