Sha256: 84ca99966163ab0d55ea8ab8456d3ff5bc0ee9299e3df6eceb7e616ee6b4c2d3
Contents?: true
Size: 473 Bytes
Versions: 63
Compression:
Stored size: 473 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.configuration.contacts_fields.each_pair do |fn, ft| next if ft.nil? field fn, type: ft end end end end end end
Version data entries
63 entries across 63 versions & 2 rubygems