mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
12 lines
219 B
Ruby
12 lines
219 B
Ruby
module Documents
|
|
module Analysis
|
|
class DocumentAnalysisService < Service
|
|
def self.create_placeholder_analysis(document)
|
|
document.document_analysis.first_or_create
|
|
end
|
|
|
|
|
|
end
|
|
end
|
|
end
|