mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 07:16:03 +01:00
5 lines
107 B
Ruby
5 lines
107 B
Ruby
class AnswerController < ApplicationController
|
|
def show
|
|
@answer = Answer.find(params[:id])
|
|
end
|
|
end
|