diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index 7d9098095..62f9591ed 100644 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@ -78,6 +78,7 @@ class UsersController < ApplicationController ##added by fq def watch_bids @bids = Bid.watched_by(@user) + @bids = Bid.visible.where('reward_type = ?', 1) @offset, @limit = api_offset_and_limit({:limit => 10}) @bid_count = @bids.count @bid_pages = Paginator.new @bid_count, @limit, params['page']