mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 09:46:03 +01:00
7 lines
160 B
Ruby
7 lines
160 B
Ruby
|
class QuestionController < ApplicationController
|
||
|
def show
|
||
|
@question = Question.find(params[:id])
|
||
|
@answers = @question.answers.reverse_order
|
||
|
end
|
||
|
end
|