mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 13:33:21 -08:00
8 lines
193 B
Ruby
8 lines
193 B
Ruby
class Follow < ActiveRecord::Base
|
|
belongs_to :account
|
|
belongs_to :target_account, class_name: 'Account'
|
|
|
|
after_create do
|
|
self.account.stream_entries.create!(activity: self)
|
|
end
|
|
end
|