5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-26 02:16:21 +00:00

fix: algunos mixins por defecto
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
f 2023-10-06 10:56:16 -03:00
parent 915ba0761f
commit 74b6899667
No known key found for this signature in database

View file

@ -7,10 +7,7 @@
MetadataTemplate = Struct.new(:site, :document, :name, :label, :type, MetadataTemplate = Struct.new(:site, :document, :name, :label, :type,
:value, :help, :required, :errors, :post, :value, :help, :required, :errors, :post,
:layout, keyword_init: true) do :layout, keyword_init: true) do
# Determina si el campo es indexable include Metadata::FrontMatterConcern
def indexable?
false
end
def inspect def inspect
"#<#{self.class} site=#{site.name.inspect} post=#{post.id.inspect} value=#{value.inspect}>" "#<#{self.class} site=#{site.name.inspect} post=#{post.id.inspect} value=#{value.inspect}>"
@ -124,11 +121,6 @@ MetadataTemplate = Struct.new(:site, :document, :name, :label, :type,
value.to_s value.to_s
end end
# Decide si el metadato se coloca en el front_matter o no
def front_matter?
true
end
def array? def array?
type == 'array' type == 'array'
end end