Sha256: 96f3803d2141485efcd731f7077485bb66a970735bfa0cdaae5de3050c798a09
Contents?: true
Size: 466 Bytes
Versions: 105
Compression:
Stored size: 466 Bytes
Contents
module RocketCMS module Models module Mongoid module ContactMessage extend ActiveSupport::Concern included do field :name, type: String field :email, type: String field :phone, type: String field :content, type: String RocketCMS.config.contacts_fields.each_pair do |fn, ft| next if ft.nil? field fn, type: ft end end end end end end
Version data entries
105 entries across 105 versions & 2 rubygems