mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 13:07:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			159 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			159 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
module MessageFormatHelper
 | 
						|
  include RegexHelper
 | 
						|
  def transform_user_mention_content(message_content)
 | 
						|
    message_content.gsub(MENTION_REGEX, '\1')
 | 
						|
  end
 | 
						|
end
 |