5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 19:56:21 +00:00
panel/app/models/metadata_created_at.rb

15 lines
234 B
Ruby
Raw Normal View History

2023-09-13 20:52:21 +00:00
# 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