Files
fizzy/app/models/comment.rb
T
2024-08-14 17:36:13 -05:00

5 lines
130 B
Ruby

class Comment < ApplicationRecord
belongs_to :splat
belongs_to :creator, class_name: "User", default: -> { Current.user }
end