mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 16:29:52 +01:00
9 lines
230 B
Ruby
9 lines
230 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Moderation::QuestionsController < ApplicationController
|
|
before_action :authenticate_user!
|
|
|
|
def show
|
|
@questions = Question.where(author_identifier: params[:author_identifier])
|
|
end
|
|
end
|