0cb7333977
Twilio Whatsapp Integration Co-authored-by: Sojan <sojan@pepalo.com>
10 lines
264 B
Ruby
10 lines
264 B
Ruby
FactoryBot.define do
|
|
factory :channel_twilio_sms, class: 'Channel::TwilioSms' do
|
|
auth_token { SecureRandom.uuid }
|
|
account_sid { SecureRandom.uuid }
|
|
sequence(:phone_number) { |n| "+123456789#{n}1" }
|
|
medium { :sms }
|
|
inbox
|
|
account
|
|
end
|
|
end
|