mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 18:11:41 +00:00
bcab506ff3
(igual no hacía falta, por las dudas)
12 lines
199 B
Ruby
12 lines
199 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Asigna un identificador único al artículo
|
|
class MetadataUuid < MetadataTemplate
|
|
def default_value
|
|
SecureRandom.uuid
|
|
end
|
|
|
|
def private?
|
|
false
|
|
end
|
|
end
|