diff --git a/ui-ngx/src/app/core/http/device.service.ts b/ui-ngx/src/app/core/http/device.service.ts index c4a63083c8..6cb4a4bf07 100644 --- a/ui-ngx/src/app/core/http/device.service.ts +++ b/ui-ngx/src/app/core/http/device.service.ts @@ -42,11 +42,6 @@ export class DeviceService { private http: HttpClient ) { } - public getTenantDevices(pageLink: PageLink, config?: RequestConfig): Observable> { - return this.http.get>(`/api/tenant/devices${pageLink.toQuery()}`, - defaultHttpOptionsFromConfig(config)); - } - public getTenantDeviceInfos(pageLink: PageLink, type: string = '', config?: RequestConfig): Observable> { return this.http.get>(`/api/tenant/deviceInfos${pageLink.toQuery()}&type=${type}`,