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