mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-07 18:13:36 +01:00
10 lines
231 B
Ruby
10 lines
231 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Moderation::QuestionsController < ApplicationController
|
||
|
before_action :authenticate_user!
|
||
|
|
||
|
def index
|
||
|
@questions = Question.where(author_identifier: params[:author_identifier])
|
||
|
end
|
||
|
end
|