Skip to content

Commit

Permalink
fix(bookmark): fixes bookmark querying bug
Browse files Browse the repository at this point in the history
Apparently the API never could filter by userId...
  • Loading branch information
atruskie committed Jun 26, 2016
1 parent 736cf3b commit ba2a8fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/services/bookmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ angular
// todo: replace with queryBuilder
resource.query({
filter_category: bc.appCategory,
filter_userId: userProfile.id
filter_creator_id: userProfile.id
},
function appBookmarksQuerySuccess(values, headers) {
console.info("Application bookmarks received", values);
Expand Down

0 comments on commit ba2a8fb

Please sign in to comment.