mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 15:42:48 -05:00
more notification hub renames
This commit is contained in:
@ -5,8 +5,8 @@
|
||||
"api": "https://api.bitwarden.com",
|
||||
"identity": "https://identity.bitwarden.com",
|
||||
"admin": "https://admin.bitwarden.com",
|
||||
"hub": "https://hub.bitwarden.com",
|
||||
"internalHub": "https://hub.bitwarden.com",
|
||||
"notifications": "https://notifications.bitwarden.com",
|
||||
"internalNotifications": "https://notifications.bitwarden.com",
|
||||
"internalAdmin": "https://admin.bitwarden.com",
|
||||
"internalIdentity": "https://identity.bitwarden.com",
|
||||
"internalApi": "https://api.bitwarden.com",
|
||||
|
@ -9,8 +9,8 @@
|
||||
"api": "http://localhost:4000",
|
||||
"identity": "http://localhost:33656",
|
||||
"admin": "http://localhost:62911",
|
||||
"hub": "http://localhost:61840",
|
||||
"internalHub": "http://localhost:61840",
|
||||
"notifications": "http://localhost:61840",
|
||||
"internalNotifications": "http://localhost:61840",
|
||||
"internalAdmin": "http://localhost:62911",
|
||||
"internalIdentity": "http://localhost:33656",
|
||||
"internalApi": "http://localhost:4000",
|
||||
|
@ -5,8 +5,8 @@
|
||||
"api": "https://api.bitwarden.com",
|
||||
"identity": "https://identity.bitwarden.com",
|
||||
"admin": "https://admin.bitwarden.com",
|
||||
"hub": "https://hub.bitwarden.com",
|
||||
"internalHub": "https://hub.bitwarden.com",
|
||||
"notifications": "https://notifications.bitwarden.com",
|
||||
"internalNotifications": "https://notifications.bitwarden.com",
|
||||
"internalAdmin": "https://admin.bitwarden.com",
|
||||
"internalIdentity": "https://identity.bitwarden.com",
|
||||
"internalApi": "https://api.bitwarden.com",
|
||||
|
@ -9,8 +9,8 @@
|
||||
"api": "http://localhost:4000",
|
||||
"identity": "http://localhost:33656",
|
||||
"admin": "http://localhost:62911",
|
||||
"hub": "http://localhost:61840",
|
||||
"internalHub": "http://localhost:61840",
|
||||
"notifications": "http://localhost:61840",
|
||||
"internalNotifications": "http://localhost:61840",
|
||||
"internalAdmin": "http://localhost:62911",
|
||||
"internalIdentity": "http://localhost:33656",
|
||||
"internalApi": "http://localhost:4000",
|
||||
|
@ -5,8 +5,8 @@
|
||||
"api": "https://api.bitwarden.com",
|
||||
"identity": "https://identity.bitwarden.com",
|
||||
"admin": "https://admin.bitwarden.com",
|
||||
"hub": "https://hub.bitwarden.com",
|
||||
"internalHub": "https://hub.bitwarden.com",
|
||||
"notifications": "https://notifications.bitwarden.com",
|
||||
"internalNotifications": "https://notifications.bitwarden.com",
|
||||
"internalAdmin": "https://admin.bitwarden.com",
|
||||
"internalIdentity": "https://identity.bitwarden.com",
|
||||
"internalApi": "https://api.bitwarden.com",
|
||||
|
@ -9,8 +9,8 @@
|
||||
"api": "http://localhost:4000",
|
||||
"identity": "http://localhost:33656",
|
||||
"admin": "http://localhost:62911",
|
||||
"hub": "http://localhost:61840",
|
||||
"internalHub": "http://localhost:61840",
|
||||
"notifications": "http://localhost:61840",
|
||||
"internalNotifications": "http://localhost:61840",
|
||||
"internalAdmin": "http://localhost:62911",
|
||||
"internalIdentity": "http://localhost:33656",
|
||||
"internalApi": "http://localhost:4000",
|
||||
|
@ -37,8 +37,8 @@ namespace Bit.Core
|
||||
public string Api { get; set; }
|
||||
public string Identity { get; set; }
|
||||
public string Admin { get; set; }
|
||||
public string Hub { get; set; }
|
||||
public string InternalHub { get; set; }
|
||||
public string Notifications { get; set; }
|
||||
public string InternalNotifications { get; set; }
|
||||
public string InternalAdmin { get; set; }
|
||||
public string InternalIdentity { get; set; }
|
||||
public string InternalApi { get; set; }
|
||||
|
@ -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}",
|
||||
|
@ -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));
|
||||
}
|
||||
|
@ -5,8 +5,8 @@
|
||||
"api": "https://api.bitwarden.com",
|
||||
"identity": "https://identity.bitwarden.com",
|
||||
"admin": "https://admin.bitwarden.com",
|
||||
"hub": "https://hub.bitwarden.com",
|
||||
"internalHub": "https://hub.bitwarden.com",
|
||||
"notifications": "https://notifications.bitwarden.com",
|
||||
"internalNotifications": "https://notifications.bitwarden.com",
|
||||
"internalAdmin": "https://admin.bitwarden.com",
|
||||
"internalIdentity": "https://identity.bitwarden.com",
|
||||
"internalApi": "https://api.bitwarden.com",
|
||||
|
@ -7,8 +7,8 @@
|
||||
"api": "http://localhost:4000",
|
||||
"identity": "http://localhost:33656",
|
||||
"admin": "http://localhost:62911",
|
||||
"hub": "http://localhost:61840",
|
||||
"internalHub": "http://localhost:61840",
|
||||
"notifications": "http://localhost:61840",
|
||||
"internalNotifications": "http://localhost:61840",
|
||||
"internalAdmin": "http://localhost:62911",
|
||||
"internalIdentity": "http://localhost:33656",
|
||||
"internalApi": "http://localhost:4000",
|
||||
|
@ -5,8 +5,8 @@
|
||||
"api": "https://api.bitwarden.com",
|
||||
"identity": "https://identity.bitwarden.com",
|
||||
"admin": "https://admin.bitwarden.com",
|
||||
"hub": "https://hub.bitwarden.com",
|
||||
"internalHub": "https://hub.bitwarden.com",
|
||||
"notifications": "https://notifications.bitwarden.com",
|
||||
"internalNotifications": "https://notifications.bitwarden.com",
|
||||
"internalAdmin": "https://admin.bitwarden.com",
|
||||
"internalIdentity": "https://identity.bitwarden.com",
|
||||
"internalApi": "https://api.bitwarden.com",
|
||||
|
@ -9,8 +9,8 @@
|
||||
"api": "http://localhost:4000",
|
||||
"identity": "http://localhost:33656",
|
||||
"admin": "http://localhost:62911",
|
||||
"hub": "http://localhost:61840",
|
||||
"internalHub": "http://localhost:61840",
|
||||
"notifications": "http://localhost:61840",
|
||||
"internalNotifications": "http://localhost:61840",
|
||||
"internalAdmin": "http://localhost:62911",
|
||||
"internalIdentity": "http://localhost:33656",
|
||||
"internalApi": "http://localhost:4000",
|
||||
|
@ -5,8 +5,8 @@
|
||||
"api": "https://api.bitwarden.com",
|
||||
"identity": "https://identity.bitwarden.com",
|
||||
"admin": "https://admin.bitwarden.com",
|
||||
"hub": "https://hub.bitwarden.com",
|
||||
"internalHub": "https://hub.bitwarden.com",
|
||||
"notifications": "https://notifications.bitwarden.com",
|
||||
"internalNotifications": "https://notifications.bitwarden.com",
|
||||
"internalAdmin": "https://admin.bitwarden.com",
|
||||
"internalIdentity": "https://identity.bitwarden.com",
|
||||
"internalApi": "https://api.bitwarden.com",
|
||||
|
@ -7,8 +7,8 @@
|
||||
"api": "http://localhost:4000",
|
||||
"identity": "http://localhost:33656",
|
||||
"admin": "http://localhost:62911",
|
||||
"hub": "http://localhost:61840",
|
||||
"internalHub": "http://localhost:61840",
|
||||
"notifications": "http://localhost:61840",
|
||||
"internalNotifications": "http://localhost:61840",
|
||||
"internalAdmin": "http://localhost:62911",
|
||||
"internalIdentity": "http://localhost:33656",
|
||||
"internalApi": "http://localhost:4000",
|
||||
|
Reference in New Issue
Block a user