mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 02:01:42 +00:00
9 lines
167 B
Ruby
9 lines
167 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# Asigna un identificador único al artículo
|
||
|
class MetadataUuid < MetadataTemplate
|
||
|
def default_value
|
||
|
SecureRandom.uuid
|
||
|
end
|
||
|
end
|