- had to add a Type field to interface DbEntry so that db.List()
is able to distinguish between Upload and Form properly.
- added form describe and delete commands
- added --query parameter to form+upload list for filtering
This commit is contained in:
2023-03-30 10:22:57 +02:00
parent 26f2b25e22
commit 8a791d8017
13 changed files with 208 additions and 40 deletions

View File

@@ -44,6 +44,9 @@ type Config struct {
// required to intercept requests using httpmock in tests
Mock bool
// used to filter lists
Query string
// required for forms
Description string
Notify string