diff --git a/pkg/swagger/docs.go b/pkg/swagger/docs.go index 76873197e..2b852088e 100644 --- a/pkg/swagger/docs.go +++ b/pkg/swagger/docs.go @@ -1,6 +1,6 @@ // GENERATED BY THE COMMAND ABOVE; DO NOT EDIT // This file was generated by swaggo/swag at -// 2019-12-05 22:15:49.761451764 +0100 CET m=+0.171539379 +// 2019-12-07 21:20:14.32998445 +0100 CET m=+0.187124480 package swagger @@ -4634,6 +4634,12 @@ var doc = `{ "description": "The unique, numeric id of this list.", "type": "integer" }, + "identifier": { + "description": "The unique list short identifier. Used to build task identifiers.", + "type": "string", + "maxLength": 10, + "minLength": 0 + }, "owner": { "description": "The user who created this list.", "type": "object", diff --git a/pkg/swagger/swagger.json b/pkg/swagger/swagger.json index a3c54a4d2..48f9cbe98 100644 --- a/pkg/swagger/swagger.json +++ b/pkg/swagger/swagger.json @@ -4615,6 +4615,12 @@ "description": "The unique, numeric id of this list.", "type": "integer" }, + "identifier": { + "description": "The unique list short identifier. Used to build task identifiers.", + "type": "string", + "maxLength": 10, + "minLength": 0 + }, "owner": { "description": "The user who created this list.", "type": "object", diff --git a/pkg/swagger/swagger.yaml b/pkg/swagger/swagger.yaml index b4c9d3146..a0c92ccce 100644 --- a/pkg/swagger/swagger.yaml +++ b/pkg/swagger/swagger.yaml @@ -232,6 +232,11 @@ definitions: id: description: The unique, numeric id of this list. type: integer + identifier: + description: The unique list short identifier. Used to build task identifiers. + maxLength: 10 + minLength: 0 + type: string owner: $ref: '#/definitions/models.User' description: The user who created this list.