Actions
Defect #322
closed回答内容が表示されない。
Description
以下のように直したら動きました。
joel_test_controller.rb の L38¶
変更前
@target.user_id = User.current
左辺がIDで右辺がオブジェクトになっていたのでIDに統一。
変更後
@target.user_id = User.current.id
joel_test_controller.rb の L58¶
find_last_score_of_userにUserオブジェクトを渡しているが、受け取り側はユーザIDが来ることを期待しているようなのでIDを渡すよう変更
変更前
def find_last_answer
@target = JoelTestScore.find_last_score_of_user(@user)
end
変更後
def find_last_answer
@target = JoelTestScore.find_last_score_of_user(@user.id)
end
Updated by Takashi Takebayashi over 14 years ago
- Status changed from 新規(New) to 終了(Closed)
- Assignee set to Takashi Takebayashi
- % Done changed from 0 to 100
Actions