mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 03:57:52 +00:00
* 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>
12 lines
274 B
Ruby
12 lines
274 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :channel_facebook_page, class: 'Channel::FacebookPage' do
|
|
page_access_token { SecureRandom.uuid }
|
|
user_access_token { SecureRandom.uuid }
|
|
page_id { SecureRandom.uuid }
|
|
inbox
|
|
account
|
|
end
|
|
end
|