kosen-venture/RocketAnswer

View on GitHub
app/controllers/answer_stocks_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AnswerStocksController < ApplicationController
  before_action :authenticate_user!

  def index
    @answers = current_user.stocked_answers
  end
end