Merge aerial flyover and pool CSV row datatypes

They are extremely similar, having both was just extra work.
This commit is contained in:
Eli Ribble 2026-03-04 14:52:34 +00:00
parent 3302990837
commit 6a5a59f8b8
No known key found for this signature in database
26 changed files with 624 additions and 3733 deletions

View file

@ -63,7 +63,7 @@ func getUploadByID(ctx context.Context, r *http.Request, org *models.Organizatio
return nil, nhttp.NewError("Failed to parse file_id: %w", err)
}
file_id := int32(file_id_)
detail, err := platform.GetUploadPoolDetail(ctx, u.OrganizationID, file_id)
detail, err := platform.GetUploadDetail(ctx, u.OrganizationID, file_id)
if err != nil {
return nil, nhttp.NewError("Failed to get pool: %w", err)
}