diff options
| author | ekambains <bainseka@sheridancollege.ca> | 2025-04-12 15:11:28 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-12 20:11:28 +0100 |
| commit | a39cd5f3c0a3e287652f945d203facab413b5b65 (patch) | |
| tree | fb47ba7f7180604d1c023361b65340b0096a6096 /packages/open-api | |
| parent | 56e679565741a501fcc73f2ea4f417c111c65c1e (diff) | |
| download | karakeep-a39cd5f3c0a3e287652f945d203facab413b5b65.tar.zst | |
feat(web): Optionally add short description to lists (#1225)
* feat(web): Optionally add short description to lists
* regenerate openapi spec
---------
Co-authored-by: Mohamed Bassem <me@mbassem.com>
Diffstat (limited to 'packages/open-api')
| -rw-r--r-- | packages/open-api/hoarder-openapi-spec.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/packages/open-api/hoarder-openapi-spec.json b/packages/open-api/hoarder-openapi-spec.json index 384e30f2..a1d48ba2 100644 --- a/packages/open-api/hoarder-openapi-spec.json +++ b/packages/open-api/hoarder-openapi-spec.json @@ -390,6 +390,10 @@ "name": { "type": "string" }, + "description": { + "type": "string", + "nullable": true + }, "icon": { "type": "string" }, @@ -1429,6 +1433,11 @@ "minLength": 1, "maxLength": 40 }, + "description": { + "type": "string", + "minLength": 0, + "maxLength": 100 + }, "icon": { "type": "string" }, @@ -1551,6 +1560,12 @@ "minLength": 1, "maxLength": 40 }, + "description": { + "type": "string", + "nullable": true, + "minLength": 0, + "maxLength": 100 + }, "icon": { "type": "string" }, |
