summaryrefslogtreecommitdiff
path: root/app/models/issue_email_participant.rb
blob: 9d7e2afa1d9b4ca4bd36563fc92950b47a38f16c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

class IssueEmailParticipant < ApplicationRecord
  include BulkInsertSafe
  include Presentable

  belongs_to :issue

  validates :email, uniqueness: { scope: [:issue_id], case_sensitive: false }
  validates :issue, presence: true
  validate :validate_email_format

  def validate_email_format
    self.errors.add(:email, I18n.t(:invalid, scope: 'valid_email.validations.email')) unless ValidateEmail.valid?(self.email)
  end
end