mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-03-13 21:55:15 +09:00
16 lines
269 B
Ruby
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
|