feat: Allow users to create dashboard apps to give agents more context (#4761)

This commit is contained in:
Pranav Raj S
2022-06-01 11:13:10 +05:30
committed by GitHub
parent 55f7be4ffc
commit b9aa4444b3
26 changed files with 585 additions and 21 deletions

View File

@@ -0,0 +1,10 @@
# frozen_string_literal: true
FactoryBot.define do
factory :dashboard_app do
sequence(:title) { |n| "Dashboard App #{n}" }
content { [{ type: 'frame', url: 'https://chatwoot.com' }] }
user
account
end
end