35 lines
1.1 KiB
Ruby
35 lines
1.1 KiB
Ruby
# == Schema Information
|
|
#
|
|
# Table name: invites
|
|
#
|
|
# id :integer not null, primary key
|
|
# email :string
|
|
# email_sender :string
|
|
# message :text
|
|
# created_at :datetime
|
|
# updated_at :datetime
|
|
# dossier_id :integer
|
|
# user_id :integer
|
|
#
|
|
class Invite < ApplicationRecord
|
|
include EmailSanitizableConcern
|
|
|
|
belongs_to :dossier, optional: false
|
|
belongs_to :user, optional: true
|
|
|
|
before_validation -> { sanitize_email(:email) }
|
|
|
|
validates :email, presence: true
|
|
validates :email, uniqueness: { scope: :dossier_id }
|
|
|
|
validates :email, format: { with: Devise.email_regexp, message: "n'est pas valide" }, allow_nil: true
|
|
|
|
# #1619 When an administrateur deletes a `Procedure`, its `hidden_at` field, and
|
|
# the `hidden_at` field of its `Dossier`s, get set, effectively removing the Procedure
|
|
# and Dossier from their respective `default_scope`s.
|
|
# Therefore, we also remove `Invite`s for such effectively deleted `Dossier`s
|
|
# from their default scope.
|
|
scope :kept, -> { joins(:dossier).merge(Dossier.kept) }
|
|
|
|
default_scope { kept }
|
|
end
|