retrospring/app/controllers/answer_controller.rb
2014-12-05 07:02:23 +01:00

5 lines
107 B
Ruby

class AnswerController < ApplicationController
def show
@answer = Answer.find(params[:id])
end
end