Allow optional import fields (#865)

This commit is contained in:
Zach Gollwitzer
2024-06-11 18:46:44 -04:00
committed by GitHub
parent 6477c0f766
commit 8372e26864
4 changed files with 15 additions and 5 deletions

View File

@@ -148,15 +148,18 @@ class Import < ApplicationRecord
name_field = Import::Field.new \
key: "name",
label: "Name"
label: "Name",
is_optional: true
category_field = Import::Field.new \
key: "category",
label: "Category"
label: "Category",
is_optional: true
tags_field = Import::Field.new \
key: "tags",
label: "Tags"
label: "Tags",
is_optional: true
amount_field = Import::Field.new \
key: "amount",