1
0
Fork 0
This repository has been archived on 2023-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
lesson-decentralized_microb.../app/models/followship.rb

10 lines
309 B
Ruby
Raw Permalink Normal View History

2021-03-10 10:34:59 +00:00
class Followship < ApplicationRecord
belongs_to :subject_profile, class_name: 'Profile'
belongs_to :object_profile, class_name: 'Profile'
validates :object_profile,
exclusion: { in: ->(followship) { [followship.subject_profile] } },
uniqueness: { scope: :subject_profile }
end