mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 04:24:22 +00:00
bf575a1f5e
Introduce recent to Follow, as Account and other models have. This change also adds specs for the scope and the dependents.
29 lines
779 B
Ruby
29 lines
779 B
Ruby
# frozen_string_literal: true
|
|
# == Schema Information
|
|
#
|
|
# Table name: follows
|
|
#
|
|
# id :integer not null, primary key
|
|
# account_id :integer not null
|
|
# target_account_id :integer not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
|
|
class Follow < ApplicationRecord
|
|
include Paginable
|
|
|
|
belongs_to :account, counter_cache: :following_count, required: true
|
|
|
|
belongs_to :target_account,
|
|
class_name: 'Account',
|
|
counter_cache: :followers_count,
|
|
required: true
|
|
|
|
has_one :notification, as: :activity, dependent: :destroy
|
|
|
|
validates :account_id, uniqueness: { scope: :target_account_id }
|
|
|
|
scope :recent, -> { reorder(id: :desc) }
|
|
end
|