mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 18:36:04 +01:00
6 lines
131 B
Ruby
6 lines
131 B
Ruby
class AnswerController < ApplicationController
|
|
def show
|
|
@answer = Answer.find(params[:id])
|
|
@display_all = true
|
|
end
|
|
end
|