0
0より大きいユーザーのみを含めるにはchallenges.publish
?コントローラの非クラス/モジュールと比較して
class UsersController < ApplicationController
def index
@users, @alphaParams = User.select{ |user| user.challenges.publish > 0}.alpha_paginate(params[:letter], {:pagination_class => "pagination-centered"}){|user| user.name}
end
end
たぶん私はselect
の代わりにwhere
を使用する必要がありますか?