2016-08-18 01:56:23 +10:00
|
|
|
class Favourite < ApplicationRecord
|
2016-03-25 12:13:30 +11:00
|
|
|
include Streamable
|
|
|
|
|
2016-02-24 05:17:37 +11:00
|
|
|
belongs_to :account, inverse_of: :favourites
|
|
|
|
belongs_to :status, inverse_of: :favourites
|
|
|
|
|
2016-09-01 21:21:48 +10:00
|
|
|
validates :status_id, uniqueness: { scope: :account_id }
|
|
|
|
|
2016-02-24 05:17:37 +11:00
|
|
|
def verb
|
|
|
|
:favorite
|
|
|
|
end
|
|
|
|
|
|
|
|
def title
|
2016-09-30 05:28:21 +10:00
|
|
|
"#{account.acct} favourited a status by #{status.account.acct}"
|
2016-02-24 05:17:37 +11:00
|
|
|
end
|
|
|
|
|
|
|
|
def object_type
|
|
|
|
target.object_type
|
|
|
|
end
|
|
|
|
|
|
|
|
def thread
|
2016-09-30 05:28:21 +10:00
|
|
|
status
|
2016-02-24 05:17:37 +11:00
|
|
|
end
|
|
|
|
|
2016-03-25 12:13:30 +11:00
|
|
|
def target
|
|
|
|
thread
|
2016-02-24 05:17:37 +11:00
|
|
|
end
|
|
|
|
end
|