5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-02 12:34:16 +00:00
panel/app/models/metadata_html.rb

13 lines
181 B
Ruby
Raw 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