Feature: Knowledge Base APIs (#1002)

- 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>
This commit is contained in:
Subin T P
2020-09-26 02:32:34 +05:30
committed by GitHub
parent 4b27ac63d4
commit 701eccb35c
34 changed files with 659 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
# == Schema Information
#
# Table name: kbase_categories
#
# id :bigint not null, primary key
# description :text
# name :string
# position :integer
# created_at :datetime not null
# updated_at :datetime not null
# account_id :integer not null
# portal_id :integer not null
#
class Kbase::Category < ApplicationRecord
belongs_to :account
belongs_to :portal
has_many :folders, dependent: :destroy
has_many :articles, dependent: :nullify
before_validation :ensure_account_id
validates :account_id, presence: true
validates :name, presence: true
private
def ensure_account_id
self.account_id = portal&.account_id
end
end