indentlabs/notebook

View on GitHub
app/models/documents/document_category.rb

Summary

Maintainability
A
0 mins
Test Coverage
class DocumentCategory < ApplicationRecord
  belongs_to :document_analysis

  scope :relevant, -> { where('score > 0.85') }

  def parent_categories
    self.label.split('/')[1..-2].join('/')
  end

  def terminal_category
    self.label.split('/').last
  end
end