Retrospring/app/controllers/answer_controller.rb

7 lines
131 B
Ruby

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