Browse Source

Code review. event.service minor code beautify

pull/3811/head
deaflynx 6 years ago
parent
commit
9581b9485f
  1. 3
      ui-ngx/src/app/core/http/event.service.ts

3
ui-ngx/src/app/core/http/event.service.ts

@ -39,7 +39,8 @@ export class EventService {
defaultHttpOptionsFromConfig(config));
}
public getEdgeEvents(entityId: EntityId, pageLink: TimePageLink, config?: RequestConfig): Observable<PageData<Event>> {
public getEdgeEvents(entityId: EntityId, pageLink: TimePageLink,
config?: RequestConfig): Observable<PageData<Event>> {
return this.http.get<PageData<Event>>(`/api/edge/${entityId.id}/events` + `${pageLink.toQuery()}`,
defaultHttpOptionsFromConfig(config));
}

Loading…
Cancel
Save