Sha256: a727261887845b5dfff98c57fe3881764f0a6be91d2c1bbe98e203d4cd8e9006
Contents?: true
Size: 399 Bytes
Versions: 25
Compression:
Stored size: 399 Bytes
Contents
module Lolita module Adapter module FieldHelper def technical? if self.name.to_s.match(/^created_at|updated_at|type$/) true elsif self.primary? true elsif adapter.klass.respond_to?(:uploaders) adapter.klass.uploaders.keys.include?(name.to_sym) end end def content? !technical? end end end end
Version data entries
25 entries across 25 versions & 1 rubygems