notebook/app/models/documents/document_category.rb
2019-07-09 00:21:56 -05:00

14 lines
263 B
Ruby

class DocumentCategory < ApplicationRecord
belongs_to :document_analysis
scope :relevant, -> { where('score > 0.8') }
def parent_categories
self.label.split('/')[1..-2].join('/')
end
def terminal_category
self.label.split('/').last
end
end