2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-18 01:56:23 +10:00
|
|
|
class Favourite < ApplicationRecord
|
2016-11-10 03:48:44 +11:00
|
|
|
include Paginable
|
2016-03-25 12:13:30 +11:00
|
|
|
|
2016-02-24 05:17:37 +11:00
|
|
|
belongs_to :account, inverse_of: :favourites
|
2017-03-31 00:06:59 +11:00
|
|
|
belongs_to :status, inverse_of: :favourites, counter_cache: true
|
2016-02-24 05:17:37 +11:00
|
|
|
|
2016-11-22 00:59:13 +11:00
|
|
|
has_one :notification, as: :activity, dependent: :destroy
|
|
|
|
|
2016-09-01 21:21:48 +10:00
|
|
|
validates :status_id, uniqueness: { scope: :account_id }
|
|
|
|
|
2016-12-22 21:34:05 +11:00
|
|
|
before_validation do
|
|
|
|
self.status = status.reblog if status.reblog?
|
|
|
|
end
|
2016-02-24 05:17:37 +11:00
|
|
|
end
|