25 lines
568 B
Ruby
25 lines
568 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UserPreference < ApplicationRecord
|
|
belongs_to :user
|
|
|
|
validate :must_be_valid_email_type
|
|
|
|
VALID_EMAIL_TYPES =
|
|
["someone_reported",
|
|
"mentioned",
|
|
"mentioned_in_comment",
|
|
"comment_on_post",
|
|
"private_message",
|
|
"started_sharing",
|
|
"also_commented",
|
|
"liked",
|
|
"reshared",
|
|
"contacts_birthday"]
|
|
|
|
def must_be_valid_email_type
|
|
unless VALID_EMAIL_TYPES.include?(self.email_type)
|
|
errors.add(:email_type, 'supplied mail type is not a valid or known email type')
|
|
end
|
|
end
|
|
end
|