From 4bdc2cc93558701ed22df442cfbf5a60295ed13f Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 28 Apr 2016 19:31:44 +0200 Subject: [PATCH] Remove default client id/secret --- client/angular/users/services/auth.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/angular/users/services/auth.service.ts b/client/angular/users/services/auth.service.ts index 14c3f009a..fc5048d8a 100644 --- a/client/angular/users/services/auth.service.ts +++ b/client/angular/users/services/auth.service.ts @@ -12,8 +12,8 @@ export class AuthService { private _loginChanged; private _baseLoginUrl = '/api/v1/users/token'; private _baseClientUrl = '/api/v1/users/client'; - private _clientId = '56f055587305d40b21904240'; - private _clientSecret = 'megustalabanana'; + private _clientId = ''; + private _clientSecret = ''; constructor (private http: Http) { this._loginChanged = new Subject(); -- 2.41.0