Sha256: 9acf540ed00cf4c23dbb62e671c38d68b3309006df651fa690fb2a54159a829a
Contents?: true
Size: 1.46 KB
Versions: 6
Compression:
Stored size: 1.46 KB
Contents
module Phcmemberspro class Member::Listing < ApplicationRecord # Add Paper Trail has_paper_trail # Model Relationships belongs_to :profile, class_name: 'Phcmemberspro::Member::Profile' has_many :categorylistings, class_name: 'Phcmemberspro::Directory::Categorylisting', dependent: :destroy has_many :categories, class_name: 'Phcmemberspro::Directory::Category', :through => :categorylistings # Validation for Form Fields validates :mbcompanyname, presence: true, length: { minimum: 2 } validates :mbcontactname, presence: true, length: { minimum: 2 } validates :mbaddressl1, length: { minimum: 3 } validates :mbaddressl2, presence: true, length: { minimum: 3 } validates :mbcity, presence: true, length: { minimum: 3 } validates :mbcountry, presence: true, length: { minimum: 3 } validates :mbprovince, presence: true, length: { minimum: 2 } validates :mbpostalcode, presence: true, length: { minimum: 3 } validates :mbcontactemail, presence: true, length: { minimum: 3 } validates :mbwebsite, presence: true, length: { minimum: 6 } validates :mbphone, presence: true, format: { with: /\A(\+\d{1,2}\s)?\(?\d{3}\)?[\s.-]?\d{3}[\s.-]?\d{4}\z/, message: "Please Follow this Phone Number Format: xxx-xxx-xxxx" } end end
Version data entries
6 entries across 6 versions & 1 rubygems