2020-06-12 17:42:47 +00:00
|
|
|
FactoryBot.define do
|
|
|
|
factory :integrations_hook, class: 'Integrations::Hook' do
|
|
|
|
status { 1 }
|
|
|
|
inbox_id { 1 }
|
|
|
|
account_id { 1 }
|
2020-06-22 07:49:26 +00:00
|
|
|
app_id { 'slack' }
|
2020-06-12 17:42:47 +00:00
|
|
|
settings { 'MyText' }
|
|
|
|
hook_type { 1 }
|
|
|
|
access_token { SecureRandom.hex }
|
|
|
|
reference_id { SecureRandom.hex }
|
|
|
|
end
|
|
|
|
end
|