このコミットが含まれているのは:
2026-03-22 19:52:14 +09:00
コミット 63c1dd197c
4個のファイルの変更61行の追加43行の削除
+1 -1
ファイルの表示
@@ -6,7 +6,7 @@ class TheatreCommentsController < ApplicationController
comments = TheatreComment
.where(theatre_id: params[:theatre_id])
.where('no > ?', no_gt)
.order(:no)
.order(no: :desc)
render json: comments.as_json(include: { user: { only: [:id, :name] } })
end