Files
fizzy/app/models/user/attachable.rb
T
2025-07-03 11:25:47 +02:00

12 lines
201 B
Ruby

module User::Attachable
extend ActiveSupport::Concern
included do
include ActionText::Attachable
end
def attachable_plain_text_representation(...)
"@#{first_name.downcase}"
end
end