mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-28 17:13:56 +00:00
- Introduce models & migrations for portals, categories, folders and articles - CRUD API for portals - CRUD API for categories Addresses: #714 Co-authored-by: Sojan <sojan@pepalo.com>
8 lines
154 B
Ruby
8 lines
154 B
Ruby
FactoryBot.define do
|
|
factory :kbase_portal, class: 'Kbase::Portal' do
|
|
account
|
|
name { Faker::Book.name }
|
|
slug { SecureRandom.hex }
|
|
end
|
|
end
|