notebook/app/models/documents/document_category.rb

14 lines
264 B
Ruby

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