chore: add missing description field in open api

This commit is contained in:
2026-04-12 13:51:07 +03:00
parent f5fad5832e
commit a21333babc
2 changed files with 6 additions and 0 deletions

View File

@@ -42,6 +42,7 @@ namespace OCA\Pantry;
* id: int,
* listId: int,
* name: string,
* description: string|null,
* categoryId: int|null,
* quantity: string|null,
* done: bool,

View File

@@ -287,6 +287,7 @@
"id",
"listId",
"name",
"description",
"categoryId",
"quantity",
"done",
@@ -313,6 +314,10 @@
"name": {
"type": "string"
},
"description": {
"type": "string",
"nullable": true
},
"categoryId": {
"type": "integer",
"format": "int64",