Commit 9581b9485fc2f1eea0fadd01410af4e1b37729b2
1 parent
b5c6381e
Code review. event.service minor code beautify
Showing
1 changed file
with
2 additions
and
1 deletions
... | ... | @@ -39,7 +39,8 @@ export class EventService { |
39 | 39 | defaultHttpOptionsFromConfig(config)); |
40 | 40 | } |
41 | 41 | |
42 | - public getEdgeEvents(entityId: EntityId, pageLink: TimePageLink, config?: RequestConfig): Observable<PageData<Event>> { | |
42 | + public getEdgeEvents(entityId: EntityId, pageLink: TimePageLink, | |
43 | + config?: RequestConfig): Observable<PageData<Event>> { | |
43 | 44 | return this.http.get<PageData<Event>>(`/api/edge/${entityId.id}/events` + `${pageLink.toQuery()}`, |
44 | 45 | defaultHttpOptionsFromConfig(config)); |
45 | 46 | } | ... | ... |