diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-01-10 09:41:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-10 09:41:18 +0100 |
commit | 91c7efaeb6c3a65643f1f0a9377d7c42b9231f8a (patch) | |
tree | 8dc915870df52089dc873c347a31699729bd2c57 /apps/workflowengine/src/workflowengine.js | |
parent | f71475de34e63ec03b26323ac2d98de800777f52 (diff) | |
parent | 79f14e8299d5329fa310650f2036f280a2fba4fe (diff) | |
download | nextcloud-server-91c7efaeb6c3a65643f1f0a9377d7c42b9231f8a.tar.gz nextcloud-server-91c7efaeb6c3a65643f1f0a9377d7c42b9231f8a.zip |
Merge pull request #30020 from nextcloud/feat/webpack-vendors-bundles
Feat/webpack vendors bundles
Diffstat (limited to 'apps/workflowengine/src/workflowengine.js')
-rw-r--r-- | apps/workflowengine/src/workflowengine.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/workflowengine/src/workflowengine.js b/apps/workflowengine/src/workflowengine.js index 00ca352d9af..a3e92c2a997 100644 --- a/apps/workflowengine/src/workflowengine.js +++ b/apps/workflowengine/src/workflowengine.js @@ -30,7 +30,7 @@ import ShippedChecks from './components/Checks' /** * A plugin for displaying a custom value field for checks * - * @typedef {Object} CheckPlugin + * @typedef {object} CheckPlugin * @property {string} class - The PHP class name of the check * @property {Comparison[]} operators - A list of possible comparison operations running on the check * @property {Vue} component - A vue component to handle the rendering of options @@ -39,12 +39,12 @@ import ShippedChecks from './components/Checks' * event once the data has changed * @property {callable} placeholder - Return a placeholder of no custom component is used * @property {callable} validate - validate a check if no custom component is used - **/ + */ /** * A plugin for extending the admin page repesentation of a operator * - * @typedef {Object} OperatorPlugin + * @typedef {object} OperatorPlugin * @property {string} id - The PHP class name of the check * @property {string} operation - Default value for the operation field * @property {string} color - Custom color code to be applied for the operator selector @@ -55,10 +55,10 @@ import ShippedChecks from './components/Checks' */ /** - * @typedef {Object} Comparison + * @typedef {object} Comparison * @property {string} operator - value the comparison should have, e.g. !less, greater * @property {string} name - Translated readable text, e.g. less or equals - **/ + */ /** * Public javascript api for apps to register custom plugins |