5 lines
130 B
Ruby
5 lines
130 B
Ruby
class Comment < ApplicationRecord
|
|
belongs_to :splat
|
|
belongs_to :creator, class_name: "User", default: -> { Current.user }
|
|
end
|