diff options
author | Dan Timoney <dtimoney@att.com> | 2019-05-13 12:52:44 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-05-13 12:52:44 +0000 |
commit | 425e1b49c18f4caebea2af79849e81c5aefb34b3 (patch) | |
tree | 97be7f9445d962f80ae23737693f3f0039ae4ce6 /cds-ui/client/src/app/common | |
parent | 7bace3db55c2ca51431e88191cc7a8587d7aa508 (diff) | |
parent | 087d4b667a9c5517ac7d014c2bbdad994b927147 (diff) |
Merge "Modify CDS-UI server to allow communicating with external blueprint mS"
Diffstat (limited to 'cds-ui/client/src/app/common')
-rw-r--r-- | cds-ui/client/src/app/common/constants/app-constants.ts | 4 | ||||
-rw-r--r-- | cds-ui/client/src/app/common/core/services/api.service.ts | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/cds-ui/client/src/app/common/constants/app-constants.ts b/cds-ui/client/src/app/common/constants/app-constants.ts index d4e8989c1..283ce735f 100644 --- a/cds-ui/client/src/app/common/constants/app-constants.ts +++ b/cds-ui/client/src/app/common/constants/app-constants.ts @@ -92,10 +92,6 @@ export const GlobalContants = { } }; -export const LoopbackConfig = { - url: "http://127.0.0.1:3000", - authtoken: "ccsdkapps" -} export const ResourceDictionaryURLs = { saveResourceDictionary: '/resourcedictionary/save', diff --git a/cds-ui/client/src/app/common/core/services/api.service.ts b/cds-ui/client/src/app/common/core/services/api.service.ts index 463ef3827..addf51ca5 100644 --- a/cds-ui/client/src/app/common/core/services/api.service.ts +++ b/cds-ui/client/src/app/common/core/services/api.service.ts @@ -24,7 +24,6 @@ limitations under the License. import { Injectable } from '@angular/core'; import { HttpClient, HttpHeaders, HttpResponse, HttpHeaderResponse } from '@angular/common/http'; import { Observable } from 'rxjs'; -import { LoopbackConfig } from '../../constants/app-constants'; @Injectable() export class ApiService { |