Skip to content

Commit

Permalink
Fix aggregator endpoints RestApiClient (#3128)
Browse files Browse the repository at this point in the history
  • Loading branch information
sydp authored Jul 18, 2024
1 parent 4f7b5ce commit c897922
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions timesketch/frontend-ng/src/utils/RestApiClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,10 +275,10 @@ export default {
return RestApiClient.get('/sketches/' + sketchId + '/aggregation/')
},
getAggregationById(sketchId, aggregationId) {
return RestApiClient.get('/sketches/' + sketchId + '/aggregation/' + aggregationId)
return RestApiClient.get('/sketches/' + sketchId + '/aggregation/' + aggregationId + '/')
},
deleteAggregationById(sketchId, aggregationId) {
return RestApiClient.delete('/sketches/' + sketchId + '/aggregation/' + aggregationId)
return RestApiClient.delete('/sketches/' + sketchId + '/aggregation/' + aggregationId + '/')
},
getAggregationGroups(sketchId) {
return RestApiClient.get('/sketches/' + sketchId + '/aggregation/group/')
Expand Down

0 comments on commit c897922

Please sign in to comment.