2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-06-01 12:20:20 +00:00
|
|
|
|
2015-11-13 14:15:44 +00:00
|
|
|
class Chat::Message < ApplicationModel
|
2017-05-02 15:21:13 +00:00
|
|
|
include ChecksHtmlSanitized
|
2017-02-01 11:48:50 +00:00
|
|
|
|
2021-06-15 13:06:44 +00:00
|
|
|
belongs_to :chat_session, class_name: 'Chat::Session'
|
|
|
|
belongs_to :created_by, class_name: 'User', optional: true
|
|
|
|
|
2017-02-01 11:48:50 +00:00
|
|
|
sanitized_html :content
|
2015-11-13 14:15:44 +00:00
|
|
|
end
|