mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 00:56:05 +01:00
9 lines
222 B
Ruby
9 lines
222 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ReactionController < ApplicationController
|
|
def index
|
|
answer = Answer.includes([smiles: { user: :profile }]).find(params[:id])
|
|
|
|
render "index", locals: { a: answer }
|
|
end
|
|
end
|