mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 19:56:21 +00:00
15 lines
234 B
Ruby
15 lines
234 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# Fecha y hora de creación
|
||
|
class MetadataCreatedAt < MetadataTemplate
|
||
|
# Por defecto la hora actual
|
||
|
def default_value
|
||
|
Time.now
|
||
|
end
|
||
|
|
||
|
# Nunca cambia
|
||
|
def value=(new_value)
|
||
|
value
|
||
|
end
|
||
|
end
|