5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 10:36:22 +00:00
panel/app/models/metadata_text.rb
f 780d26f79a
feat: title es un atributo obligatorio
si no existe en el esquema, generar un título en base a sus valores
2024-05-24 13:13:58 -03:00

8 lines
129 B
Ruby

# frozen_string_literal: true
# Un campo de texto largo
class MetadataText < MetadataString
def titleize?
false
end
end