feat: Adds api route tests. Tested user interface works as expected, still needs some work on vendors form.

This commit is contained in:
2025-01-20 16:44:12 -05:00
parent affd9b5d81
commit 410bbae1c8
23 changed files with 537 additions and 121 deletions

View File

@@ -169,10 +169,12 @@ enum IDKey: CustomStringConvertible {
}
enum Vendor: CustomStringConvertible {
case form
case row(id: SharedModels.Vendor.ID)
var description: String {
switch self {
case .form: return "form"
case let .row(id): return "\(id)"
}
}