diff --git a/pkg/swagger/docs.go b/pkg/swagger/docs.go index 38d56d3d2..ed155cbc4 100644 --- a/pkg/swagger/docs.go +++ b/pkg/swagger/docs.go @@ -6236,6 +6236,10 @@ var doc = `{ "description": "The unique, numeric id of this bucket.", "type": "integer" }, + "limit": { + "description": "How many tasks can be at the same time on this board max", + "type": "integer" + }, "list_id": { "description": "The list this bucket belongs to.", "type": "integer" diff --git a/pkg/swagger/swagger.json b/pkg/swagger/swagger.json index 34d958889..1b88b0679 100644 --- a/pkg/swagger/swagger.json +++ b/pkg/swagger/swagger.json @@ -6219,6 +6219,10 @@ "description": "The unique, numeric id of this bucket.", "type": "integer" }, + "limit": { + "description": "How many tasks can be at the same time on this board max", + "type": "integer" + }, "list_id": { "description": "The list this bucket belongs to.", "type": "integer" diff --git a/pkg/swagger/swagger.yaml b/pkg/swagger/swagger.yaml index 1b4038c90..df96a673f 100644 --- a/pkg/swagger/swagger.yaml +++ b/pkg/swagger/swagger.yaml @@ -53,6 +53,9 @@ definitions: id: description: The unique, numeric id of this bucket. type: integer + limit: + description: How many tasks can be at the same time on this board max + type: integer list_id: description: The list this bucket belongs to. type: integer