This repository has been archived on 2024-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/models/follow.rb

14 lines
412 B
Ruby
Raw Normal View History

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