Repository URL to install this package:
|
Version:
1.0.0 ▾
|
module DiscourseAnnotator
class TextAnnotation < Annotation
# Allow saving of attributes on associated records through the parent,
# :autosave option is automatically enabled on every association
accepts_nested_attributes_for :ranges
# Validations
validates :version, presence: true
validates :quote, presence: true
validates :uri, presence: true
def text_annotation?
true
end
end
end