mastodon/app/models/follow.rb

14 lines
412 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-08-17 08:56:23 -07:00
class Follow < ApplicationRecord
include Paginable
belongs_to :account, counter_cache: :following_count
belongs_to :target_account, class_name: 'Account', counter_cache: :followers_count
2016-02-22 07:00:20 -08:00
has_one :notification, as: :activity, dependent: :destroy
2016-02-22 09:10:30 -08:00
validates :account, :target_account, presence: true
validates :account_id, uniqueness: { scope: :target_account_id }
2016-02-22 07:00:20 -08:00
end