mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 18:16:22 +00:00
19 lines
394 B
Ruby
19 lines
394 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Fecha y hora de creación
|
|
class MetadataCreatedAt < MetadataTemplate
|
|
# Por defecto la hora actual, pero por retrocompatibilidad, queremos
|
|
# la fecha de publicación
|
|
def default_value
|
|
if post.date.value.to_date < Time.now.to_date
|
|
post.date.value
|
|
else
|
|
Time.now
|
|
end
|
|
end
|
|
|
|
# Nunca cambia
|
|
def value=(new_value)
|
|
value
|
|
end
|
|
end
|