1
0
Fork 0
This repository has been archived on 2023-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/models/membership_app.rb

26 lines
825 B
Ruby

# frozen_string_literal: true
class MembershipApp < ApplicationRecord
belongs_to :account, inverse_of: :own_membership_apps
belongs_to :country_state, optional: true
has_one :regional_office, through: :country_state
validates :email, presence: true, format: Devise.email_regexp
validates :first_name, presence: true
validates :last_name, presence: true
validates :date_of_birth, presence: true
validates :phone_number, presence: true
before_validation do
email&.strip!
self.middle_name = nil if middle_name.blank?
self.occupation = nil if occupation.blank?
self.telegram_username = nil if telegram_username.blank?
self.organization_membership = nil if organization_membership.blank?
self.comment = nil if comment.blank?
end
end