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