Adds the sla policy association to the conversation Fixes: https://linear.app/chatwoot/issue/CW-1615/applying-an-sla-to-the-conversation
8 lines
149 B
Ruby
8 lines
149 B
Ruby
module Enterprise::EnterpriseConversationConcern
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
belongs_to :sla_policy, optional: true
|
|
end
|
|
end
|