2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-11-02 12:23:21 +01:00
|
|
|
class FollowCommentaireGroupeGestionnaire < ApplicationRecord
|
|
|
|
belongs_to :gestionnaire
|
|
|
|
belongs_to :groupe_gestionnaire
|
|
|
|
belongs_to :sender, polymorphic: true, optional: true
|
|
|
|
|
|
|
|
validates :gestionnaire_id, uniqueness: { scope: [:groupe_gestionnaire_id, :sender_id, :sender_type, :unfollowed_at] }
|
|
|
|
end
|