feat: APIs for Articles (#4777)

Fixes: #4802
This commit is contained in:
Tejaswini Chile
2022-06-13 15:56:49 +05:30
committed by GitHub
parent 2198930185
commit ae72757d23
23 changed files with 511 additions and 42 deletions

View File

@@ -2,13 +2,11 @@ FactoryBot.define do
factory :article, class: 'Article' do
account_id { 1 }
category_id { 1 }
folder_id { 1 }
author_id { 1 }
title { 'MyString' }
content { 'MyText' }
description { 'MyDescrption' }
status { 1 }
views { 1 }
seo_title { 'MyString' }
seo { '' }
end
end