mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-07-08 17:10:22 +09:00
df76a227dc
First open source release of Campfire 🎉
7 lines
188 B
Ruby
7 lines
188 B
Ruby
class Boost < ApplicationRecord
|
|
belongs_to :message, touch: true
|
|
belongs_to :booster, class_name: "User", default: -> { Current.user }
|
|
|
|
scope :ordered, -> { order(:created_at) }
|
|
end
|