feat(api): expose import row diagnostics (#1644)

* feat(api): expose import row diagnostics

* fix(api): stabilize import row diagnostics

* fix(api): harden import row diagnostics

* fix(api): number Mint import diagnostics rows

* fix(api): enforce unique import row diagnostics

* fix(api): address import row diagnostics review
This commit is contained in:
ghost
2026-05-04 17:12:48 -06:00
committed by GitHub
parent a48f264799
commit 1ec8bd90b7
21 changed files with 719 additions and 16 deletions

View File

@@ -8,7 +8,7 @@ class Import::Row < ApplicationRecord
validate :required_columns
validate :currency_is_valid
scope :ordered, -> { order(:id) }
scope :ordered, -> { order(:source_row_number, :id) }
def tags_list
if tags.blank?