chinwagsocial/app/models/favourite.rb

30 lines
499 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-08-18 01:56:23 +10:00
class Favourite < ApplicationRecord
include Paginable
include Streamable
belongs_to :account, inverse_of: :favourites
2016-11-03 23:28:36 +11:00
belongs_to :status, inverse_of: :favourites, touch: true
validates :status_id, uniqueness: { scope: :account_id }
def verb
:favorite
end
def title
2016-09-30 05:28:21 +10:00
"#{account.acct} favourited a status by #{status.account.acct}"
end
delegate :object_type, to: :target
def thread
2016-09-30 05:28:21 +10:00
status
end
def target
thread
end
end