mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
21 lines
634 B
Ruby
21 lines
634 B
Ruby
class RepositoryTextValue < ApplicationRecord
|
|
belongs_to :created_by,
|
|
foreign_key: :created_by_id,
|
|
class_name: 'User',
|
|
optional: true
|
|
belongs_to :last_modified_by,
|
|
foreign_key: :last_modified_by_id,
|
|
class_name: 'User',
|
|
optional: true
|
|
has_one :repository_cell, as: :value, dependent: :destroy, inverse_of: :value
|
|
accepts_nested_attributes_for :repository_cell
|
|
|
|
validates :repository_cell, presence: true
|
|
validates :data,
|
|
presence: true,
|
|
length: { maximum: Constants::TEXT_MAX_LENGTH }
|
|
|
|
def formatted
|
|
data
|
|
end
|
|
end
|