diaspora/app/models/user_preference.rb
2017-08-12 15:39:20 +02:00

22 lines
511 B
Ruby

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"]
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