1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 00:52:49 -05:00

enable notifications services

This commit is contained in:
Kyle Spearrin
2018-08-17 18:04:11 -04:00
parent 40a410917f
commit 5766c1f6f3
4 changed files with 7 additions and 7 deletions

View File

@ -10,14 +10,14 @@
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"launchBrowser": false,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"Notifications": {
"commandName": "Project",
"launchBrowser": true,
"launchBrowser": false,
"applicationUrl": "http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"

View File

@ -105,7 +105,7 @@ namespace Bit.Notifications
// Add SignlarR
app.UseSignalR(routes =>
{
routes.MapHub<NotificationsHub>("/notifications-hub");
routes.MapHub<NotificationsHub>("/hub");
});
// Add MVC to the request pipeline.