Sha256: 1774b54321a5d27c1e6db62e68397fda0f1442b0c8b7515635b1387cb65b1f0f
Contents?: true
Size: 660 Bytes
Versions: 76
Compression:
Stored size: 660 Bytes
Contents
module Phcmemberspro class Members::Contact < ActiveRecord::Base # Add Paper Trail has_paper_trail # Translate Country Code to Name def country_name country = ISO3166::Country[mccountry] country.translations[I18n.locale.to_s] || country.name end # Model Relationships belongs_to :main, class_name: 'Members::Main' # Validation for Form Fields validates :mccity, presence: true, length: { minimum: 3 } validates :mcprovince, presence: true, length: { minimum: 2 } validates :mccountry, presence: true, length: { minimum: 2 } validates :mcpostalcode, presence: true, length: { minimum: 6 } end end
Version data entries
76 entries across 76 versions & 1 rubygems