mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
11 lines
254 B
Ruby
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
|