コントローラーで選択されたアクションのみの場合、モデル コールバックを使用する必要があります
class TestController
def end_exam(); end
def resume_exam(); end
def continue_exam(); end
def review_exam(); end
end
class Test //Model
after_find :include_load_question_module // only for end_exam, resume, continue
end // not for review_exam
可能性はありますか