updated changelog

This commit is contained in:
Gani Georgiev 2022-12-11 01:10:22 +02:00
parent 707f35f461
commit 007fcd36b8
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@
- Refactored `forms.RecordUpsert` to allow more easily loading and removing files programmatically. - Refactored `forms.RecordUpsert` to allow more easily loading and removing files programmatically.
``` ```
forms.RecordUpsert.LoadFiles(key, filesystem.File...) // add new filesystem.File to the form for upload forms.RecordUpsert.AddFiles(key, filesystem.File...) // add new filesystem.File to the form for upload
forms.RecordUpsert.RemoveFiles(key, filenames...) // marks the filenames for deletion forms.RecordUpsert.RemoveFiles(key, filenames...) // marks the filenames for deletion
``` ```