From cf6ae951d2d809806e6f99d12f17d92aa08d47a4 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 25 Jun 2019 12:19:18 -0400 Subject: [PATCH] events urls from web project --- src/app/services/services.module.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/services/services.module.ts b/src/app/services/services.module.ts index 9c152ae17a..33c7540cee 100644 --- a/src/app/services/services.module.ts +++ b/src/app/services/services.module.ts @@ -138,6 +138,7 @@ export function initFactory(): Function { base: isDev ? null : window.location.origin, api: isDev ? 'http://localhost:4000' : null, identity: isDev ? 'http://localhost:33656' : null, + events: isDev ? 'http://localhost:46273' : null, // Uncomment these (and comment out the above) if you want to target production // servers for local development. @@ -145,6 +146,7 @@ export function initFactory(): Function { // base: null, // api: 'https://api.bitwarden.com', // identity: 'https://identity.bitwarden.com', + // events: 'https://events.bitwarden.com', }); setTimeout(() => notificationsService.init(environmentService), 3000);