5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-29 21:06:07 +00:00
panel/app/models/metadata_html.rb

13 lines
181 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
# Campos en HTML
class MetadataHtml < MetadataContent
def front_matter?
true
end
def document_value
document.data[name.to_s]
end
end