notebook/app/models/document_entity.rb
2019-02-27 16:52:27 -06:00

11 lines
254 B
Ruby

class DocumentEntity < ApplicationRecord
belongs_to :entity, polymorphic: true
belongs_to :document_analysis
after_create :match_notebook_page
def match_notebook_page
# TODO: Attempt to link to a Notebook.ai page of the same name
end
end