DEV Community

[Comment from a deleted post]
Collapse
 
joaquinvicente profile image
Joaquín Vicente 💚

I think you can simplify your fighters_controller#index action when club_id is present:

def index
    if params[:club_id]
        @fighters = Fighter.where(club_id: params[:club_id])
    else
        @fighters = Fighter.all
    end
end