941fbb0d72
* Chore: Webwidget Inbox Tech Debts * Additional customization options creating Web Widget * Changes to edit Page for Web Widget * Remove the WebWidget API end points * Minor chores Address: #680, #502 Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
10 lines
284 B
Ruby
10 lines
284 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :channel_twitter_profile, class: 'Channel::TwitterProfile' do
|
|
twitter_access_token { SecureRandom.uuid }
|
|
twitter_access_token_secret { SecureRandom.uuid }
|
|
profile_id { SecureRandom.uuid }
|
|
account
|
|
end
|
|
end
|