Sha256: 21705fee2cf5057358ae11341bf05f26eb633f0eeebdf240527a27a5574ba8f0
Contents?: true
Size: 1.73 KB
Versions: 12
Compression:
Stored size: 1.73 KB
Contents
module Phcmemberspro class Member::Listing < ApplicationRecord # Clean URL Initialize extend FriendlyId # Add Paper Trail has_paper_trail :class_name => 'Phcmemberspro::ListingVersions' # Model Relationships belongs_to :profile, class_name: 'Phcmemberspro::Member::Profile' has_and_belongs_to_many :categories, class_name: 'Phcmemberspro::Directory::Category', :join_table => 'categories_listings' # Validation for Form Fields validates :mbcompanyname, presence: true, length: { minimum: 2 } validates :mbcontactname, presence: true, length: { minimum: 2 } validates :mbaddressl1, length: { minimum: 3 } validates :mbcity, presence: true, length: { minimum: 3 } validates :mbcountry, presence: true, length: { minimum: 2 } validates :mbprovince, presence: true, length: { minimum: 2 } validates :mbpostalcode, presence: true, length: { minimum: 3 } validates :mbcontactemail, presence: true, length: { minimum: 3 }, format: { with: /\A[^@\s]+@([^@\s]+\.)+[^@\s]+\z/, message: "Please follow this Email format: *****@********.***" } 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: ***-***-****" } # Clean URL Define friendly_id :phcmemberspro_listings_slug, use: [:slugged, :finders] # Define for Multiple Records def phcmemberspro_listings_slug [ [:org_id, :mbcompanyname, :mbcontactname] ] end end end
Version data entries
12 entries across 12 versions & 1 rubygems