Add previewable update_data! to repository checklist value [SCI-10582]

This commit is contained in:
Martin Artnik 2024-04-09 09:16:33 +02:00
parent e1ecc9f584
commit cf0799462a

View file

@ -1,6 +1,8 @@
# frozen_string_literal: true
class RepositoryChecklistValue < ApplicationRecord
attribute :current_repository_checklist_items
belongs_to :created_by, foreign_key: 'created_by_id', class_name: 'User',
inverse_of: :created_repository_checklist_values
belongs_to :last_modified_by, foreign_key: 'last_modified_by_id', class_name: 'User',
@ -78,11 +80,18 @@ class RepositoryChecklistValue < ApplicationRecord
self.last_modified_by = user
if preview
self.current_repository_checklist_items = repository_checklist_items
clear_current_repository_checklist_items_change
self.current_repository_checklist_items =
repository_cell.repository_column.repository_checklist_items.where(id: item_ids)
validate
else
self.repository_checklist_items = repository_cell.repository_column
.repository_checklist_items
.where(id: item_ids)
preview ? validate : save!
save!
end
end
def snapshot!(cell_snapshot)