mastodon/app/models/favourite.rb

30 lines
499 B
Ruby
Raw Normal View History

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