Fixes: https://linear.app/chatwoot/issue/CW-1613/sla-api Co-authored-by: Sojan Jose <sojan@pepalo.com>
10 lines
183 B
Ruby
10 lines
183 B
Ruby
FactoryBot.define do
|
|
factory :sla_policy do
|
|
account
|
|
name { 'sla_1' }
|
|
rt_threshold { 1000 }
|
|
frt_threshold { 2000 }
|
|
only_during_business_hours { false }
|
|
end
|
|
end
|