Skip to content
Snippets Groups Projects
Commit 4f496881 authored by stevereis's avatar stevereis
Browse files

Cleaning after merge conflict (duplicate function)

parent 9b733c57
No related branches found
No related tags found
No related merge requests found
......@@ -277,14 +277,6 @@ export default class ExaremeService implements IEngineService {
.pipe(map((response) => response.data));
}
getPassthrough(suffix: string): string | Observable<string> {
const path = this.options.baseurl + suffix;
return this.httpService
.get<string>(path, { params: this.req.query })
.pipe(map((response) => response.data));
}
// UTILITIES
private flattenGroups = (data: Hierarchy): Group[] => {
let groups: Group[] = [dataToGroup(data)];
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment