Retrospring/app/controllers/comments/reactions_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
383 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Comments::ReactionsController < ApplicationController
def index
comment = Comment.find(params[:id])
@reactions = Reaction.where(parent_type: "Comment", parent: comment.id).includes([{ user: :profile }])
redirect_to answer_path(username: comment.answer.user.screen_name, id: comment.answer.id) unless turbo_frame_request?
end
end