From 1840c2f7c91f5f89602a3683d85b0a9df1454855 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Sun, 11 Jun 2017 15:19:43 +0200 Subject: Update webpack stack --- client/src/app/core/auth/auth.service.ts | 6 +++--- client/src/app/core/config/config.service.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'client/src/app/core') diff --git a/client/src/app/core/auth/auth.service.ts b/client/src/app/core/auth/auth.service.ts index caf765b42..4c75df1ca 100644 --- a/client/src/app/core/auth/auth.service.ts +++ b/client/src/app/core/auth/auth.service.ts @@ -16,9 +16,9 @@ import { RestExtractor } from '../../shared/rest'; @Injectable() export class AuthService { - private static BASE_CLIENT_URL = '/api/v1/clients/local'; - private static BASE_TOKEN_URL = '/api/v1/users/token'; - private static BASE_USER_INFORMATIONS_URL = '/api/v1/users/me'; + private static BASE_CLIENT_URL = API_URL + '/api/v1/clients/local'; + private static BASE_TOKEN_URL = API_URL + '/api/v1/users/token'; + private static BASE_USER_INFORMATIONS_URL = API_URL + '/api/v1/users/me'; loginChangedSource: Observable; diff --git a/client/src/app/core/config/config.service.ts b/client/src/app/core/config/config.service.ts index 295e68c36..407dca083 100644 --- a/client/src/app/core/config/config.service.ts +++ b/client/src/app/core/config/config.service.ts @@ -5,7 +5,7 @@ import { RestExtractor } from '../../shared/rest'; @Injectable() export class ConfigService { - private static BASE_CONFIG_URL = '/api/v1/config/'; + private static BASE_CONFIG_URL = API_URL + '/api/v1/config/'; private config: { signup: { -- cgit v1.2.3