mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
11 lines
202 B
Ruby
11 lines
202 B
Ruby
class DocumentAnalysis < ApplicationRecord
|
|
belongs_to :document
|
|
|
|
serialize :words_per_sentence, Array
|
|
serialize :n_syllable_words, Hash
|
|
|
|
def complete?
|
|
self.completed_at.present?
|
|
end
|
|
end
|