cf5f6d5a74
Fixes #2461 Co-authored-by: Sojan Jose <sojan@pepalo.com>
15 lines
414 B
Ruby
15 lines
414 B
Ruby
FactoryBot.define do
|
|
factory :integrations_hook, class: 'Integrations::Hook' do
|
|
app_id { 'slack' }
|
|
account
|
|
settings { { test: 'test' } }
|
|
status { Integrations::Hook.statuses['enabled'] }
|
|
access_token { SecureRandom.hex }
|
|
reference_id { SecureRandom.hex }
|
|
|
|
trait :dialogflow do
|
|
app_id { 'dialogflow' }
|
|
settings { { project_id: 'test', credentials: {} } }
|
|
end
|
|
end
|
|
end
|