mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
23 lines
629 B
Ruby
23 lines
629 B
Ruby
class RepositoryListValue < ApplicationRecord
|
|
belongs_to :repository_list_item,
|
|
optional: true
|
|
belongs_to :created_by,
|
|
foreign_key: :created_by_id,
|
|
class_name: 'User'
|
|
belongs_to :last_modified_by,
|
|
foreign_key: :last_modified_by_id,
|
|
class_name: 'User'
|
|
has_one :repository_cell, as: :value, dependent: :destroy, inverse_of: :value
|
|
accepts_nested_attributes_for :repository_cell
|
|
|
|
validates :repository_cell, presence: true
|
|
|
|
def formatted
|
|
data.to_s
|
|
end
|
|
|
|
def data
|
|
return nil unless repository_list_item
|
|
repository_list_item.data
|
|
end
|
|
end
|