Files
once-campfire/app/models/user/mentionable.rb
Kevin McConnell df76a227dc Hello world
First open source release of Campfire 🎉
2025-08-21 09:31:59 +01:00

16 lines
269 B
Ruby

module User::Mentionable
include ActionText::Attachable
def to_attachable_partial_path
"users/mention"
end
def to_trix_content_attachment_partial_path
"users/mention"
end
def attachable_plain_text_representation(caption)
"@#{name}"
end
end