feat: Portal endpoint (#4633)
This commit is contained in:
14
spec/factories/articles.rb
Normal file
14
spec/factories/articles.rb
Normal file
@@ -0,0 +1,14 @@
|
||||
FactoryBot.define do
|
||||
factory :article, class: 'Article' do
|
||||
account_id { 1 }
|
||||
category_id { 1 }
|
||||
folder_id { 1 }
|
||||
author_id { 1 }
|
||||
title { 'MyString' }
|
||||
content { 'MyText' }
|
||||
status { 1 }
|
||||
views { 1 }
|
||||
seo_title { 'MyString' }
|
||||
seo { '' }
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user