retrospring/app/controllers/answer_controller.rb
2014-12-12 18:54:17 +01:00

6 lines
131 B
Ruby

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