13 lines
412 B
Ruby
13 lines
412 B
Ruby
# frozen_string_literal: true
|
|
|
|
class IssueEmailParticipant < ApplicationRecord
|
|
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
|