mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
599274eb13
Make repositories more extendable [SCI-3528]
34 lines
855 B
Ruby
34 lines
855 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RepositoryDateValue < ApplicationRecord
|
|
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
|
|
accepts_nested_attributes_for :repository_cell
|
|
|
|
validates :repository_cell, presence: true
|
|
validates :data, presence: true
|
|
|
|
SORTABLE_COLUMN_NAME = 'repository_date_values.data'
|
|
SORTABLE_VALUE_INCLUDE = :repository_date_value
|
|
|
|
def formatted
|
|
data
|
|
end
|
|
|
|
def data_changed?(new_data)
|
|
new_data != data
|
|
end
|
|
|
|
def update_data!(new_data, user)
|
|
self.data = new_data
|
|
self.last_modified_by = user
|
|
save!
|
|
end
|
|
|
|
def self.new_with_payload(payload, attributes)
|
|
value = new(attributes)
|
|
value.data = payload
|
|
value
|
|
end
|
|
end
|