Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_follow_user.rb « users « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a94239a746c380e920db4ad1d5c7ec2ffcb9e62f (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true
module Users
  class UserFollowUser < ApplicationRecord
    belongs_to :follower, class_name: 'User'
    belongs_to :followee, class_name: 'User'
  end
end