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