mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 15:46:21 +00:00
13 lines
185 B
Ruby
13 lines
185 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Un campo de texto
|
|
class MetadataString < MetadataTemplate
|
|
# Una string vacía
|
|
def default_value
|
|
''
|
|
end
|
|
|
|
def value
|
|
super.strip
|
|
end
|
|
end
|