Retrospring/app/controllers/answer_controller.rb

6 lines
107 B
Ruby

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