Project

General

Profile

« Previous | Next » 

Revision 62389

View differences:

repository.service.ts
47 47

  
48 48
  updateInterface(repoId: string, registeredBy: string, comment: string, interfaceInfo: RepositoryInterface): Observable<RepositoryInterface> {
49 49
    let url;
50
    console.log(comment);
50 51
    if (comment == null || comment === '') {
51 52
      url = `${this.apiUrl}updateRepositoryInterface?repoId=${repoId}&registeredBy=${registeredBy}`;
52 53
    } else {
......
161 162
    return this.httpClient.get<Map<string, string>>(url, headerOptions);
162 163
  }
163 164

  
164
  getDatasourceClasses(mode: string): Observable<Map<string, string>> {
165
  getDatasourceClasses(mode: string): Observable<Object> {
165 166
    const url = `${this.apiUrl}getDatasourceClasses/${mode}`;
166 167
    console.log(`knocking on: ${url}`);
167 168
    return this.httpClient.get<Map<string, string>>(url, headerOptions);

Also available in: Unified diff