mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
11 lines
319 B
Ruby
11 lines
319 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ResultText < ApplicationRecord
|
|
include TinyMceImages
|
|
|
|
auto_strip_attributes :text, nullify: false
|
|
validates :result, :text, presence: true
|
|
validates :text, length: { maximum: Constants::RICH_TEXT_MAX_LENGTH }
|
|
|
|
belongs_to :result, inverse_of: :result_text, touch: true
|
|
end
|