mirror of
https://github.com/whippyshou/mastodon
synced 2024-11-28 14:58:31 +09:00
8 lines
164 B
Ruby
8 lines
164 B
Ruby
class Status < ActiveRecord::Base
|
|
belongs_to :account, inverse_of: :statuses
|
|
|
|
after_create do
|
|
self.account.stream_entries.create!(activity: self)
|
|
end
|
|
end
|