701eccb35c
- 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>
7 lines
154 B
Ruby
7 lines
154 B
Ruby
FactoryBot.define do
|
|
factory :kbase_portal, class: 'Kbase::Portal' do
|
|
account
|
|
name { Faker::Book.name }
|
|
slug { SecureRandom.hex }
|
|
end
|
|
end
|