mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
9 lines
386 B
Ruby
9 lines
386 B
Ruby
class ResultText < ApplicationRecord
|
|
auto_strip_attributes :text, nullify: false
|
|
validates :text,
|
|
presence: true,
|
|
length: { maximum: Constants::RICH_TEXT_MAX_LENGTH }
|
|
validates :result, presence: true
|
|
belongs_to :result, inverse_of: :result_text, touch: true, optional: true
|
|
has_many :tiny_mce_assets, inverse_of: :result_text, dependent: :destroy
|
|
end
|