Skip to content
This repository has been archived by the owner on Mar 15, 2018. It is now read-only.

Commit

Permalink
Merge pull request #2573 from ngokevin/searchnofilter
Browse files Browse the repository at this point in the history
allow disable search app filter for curator (bug 1066755)
  • Loading branch information
ngokevin committed Sep 19, 2014
2 parents df4d957 + c819166 commit a4813c0
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 76 deletions.
2 changes: 1 addition & 1 deletion mkt/reviewers/views.py
Expand Up @@ -1130,7 +1130,7 @@ def search(self, request):
# Do filter.
sq = apply_reviewer_filters(request, WebappIndexer.search(),
data=form_data)
sq = WebappIndexer.get_app_filter(request, data, sq=sq, reviewers=True)
sq = WebappIndexer.get_app_filter(request, data, sq=sq, no_filter=True)

page = self.paginate_queryset(sq)
return self.get_pagination_serializer(page), request.GET.get('q', '')
Expand Down

0 comments on commit a4813c0

Please sign in to comment.