mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 02:21:42 +00:00
12 lines
235 B
Ruby
12 lines
235 B
Ruby
|
# Maneja la fecha del document
|
||
|
class MetadataDocumentDate < MetadataTemplate
|
||
|
# La fecha por defecto es ahora!
|
||
|
def default_value
|
||
|
Date.today.to_time
|
||
|
end
|
||
|
|
||
|
def value
|
||
|
self[:value] || document.date || default_value
|
||
|
end
|
||
|
end
|