Files
fizzy/app/models/reaction.rb
T
2025-02-18 17:08:56 -06:00

9 lines
225 B
Ruby

class Reaction < ApplicationRecord
belongs_to :comment, touch: true
belongs_to :reacter, class_name: "User", default: -> { Current.user }
scope :ordered, -> { order(:created_at) }
validates_presence_of :content
end