mastodon/app/models/follow.rb

14 lines
412 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-08-17 15:56:23 +00: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 15:00:20 +00:00
has_one :notification, as: :activity, dependent: :destroy
2016-02-22 17:10:30 +00:00
validates :account, :target_account, presence: true
validates :account_id, uniqueness: { scope: :target_account_id }
2016-02-22 15:00:20 +00:00
end