Skip to content

Commit

Permalink
fix: incorrect _util prefix in ApiPath
Browse files Browse the repository at this point in the history
  • Loading branch information
walter-manger committed Mar 15, 2017
1 parent 621f48e commit b018667
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ function forteApi(credentials, scope, options) {
content: {
aggregate: function aggregate(type, list, aggregate) {
validateArgs('content_aggregate', arguments);
return client.post(_util.ApiPaths.content.aggregate(scope, type), { data: { list, aggregate } } );
return client.post(ApiPaths.content.aggregate(scope, type), { data: { list, aggregate } } );
},
getManyComplex: function getManyComplex(type, filter) {
validateArgs('content_getManyComplex', arguments);
return client.post(_util.ApiPaths.content.getMany(scope, type), {
return client.post(ApiPaths.content.getMany(scope, type), {
data: filter,
});
},
Expand Down

0 comments on commit b018667

Please sign in to comment.