10 lines
226 B
Ruby
10 lines
226 B
Ruby
# 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
|