From 3bdf62102659af4c30de5248ff8012ebe19ced0a Mon Sep 17 00:00:00 2001 From: Laurent Cozic Date: Mon, 8 Oct 2018 19:38:27 +0100 Subject: [PATCH] Api: Document tags parameter --- CliClient/app/command-apidoc.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CliClient/app/command-apidoc.js b/CliClient/app/command-apidoc.js index da01df3cf..880fcccd2 100644 --- a/CliClient/app/command-apidoc.js +++ b/CliClient/app/command-apidoc.js @@ -152,6 +152,11 @@ class Command extends BaseCommand { type: Database.enumId('fieldType', 'text'), description: 'If an image is provided, you can also specify an optional rectangle that will be used to crop the image. In format `{ x: x, y: y, width: width, height: height }`', }); + tableFields.push({ + name: 'tags', + type: Database.enumId('fieldType', 'text'), + description: 'Comma-separated list of tags. eg. `tag1,tag2`.', + }); } lines.push('# ' + toTitleCase(tableName));