Sha256: 5e002893dad5b15fec269534cbde1408d578cb7d2d512a237a46f3c404a1e5f6
Contents?: true
Size: 566 Bytes
Versions: 16
Compression:
Stored size: 566 Bytes
Contents
module Enjoy module Models module Mongoid module ContactMessage extend ActiveSupport::Concern included do if defined?(RailsAdminComments) include RailsAdminComments::Commentable end field :name, type: String field :email, type: String field :phone, type: String field :content, type: String Enjoy.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
16 entries across 16 versions & 1 rubygems