summaryrefslogtreecommitdiffstats
path: root/apps/workflowengine
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2019-08-29 12:36:35 +0200
committerArthur Schiwon <blizzz@arthur-schiwon.de>2019-09-09 22:56:03 +0200
commitf0f0a7b43ebc4584f5dd6c0473a57eafbaa190d1 (patch)
tree29107fb3070f4e3353b79ef34c1ffa08c204b2e6 /apps/workflowengine
parent54bdc95cc15853c42eac6e306aadcc325b6e74a2 (diff)
downloadnextcloud-server-f0f0a7b43ebc4584f5dd6c0473a57eafbaa190d1.tar.gz
nextcloud-server-f0f0a7b43ebc4584f5dd6c0473a57eafbaa190d1.zip
adds a trigger hint for complex operations
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/workflowengine')
-rw-r--r--apps/workflowengine/lib/Settings/ASettings.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/workflowengine/lib/Settings/ASettings.php b/apps/workflowengine/lib/Settings/ASettings.php
index 7423c51fd93..1781aaa2f55 100644
--- a/apps/workflowengine/lib/Settings/ASettings.php
+++ b/apps/workflowengine/lib/Settings/ASettings.php
@@ -152,6 +152,7 @@ abstract class ASettings implements ISettings {
'description' => $operator->getDescription(),
'fixedEntity' => $operator instanceof ISpecificOperation ? $operator->getEntityId() : '',
'isComplex' => $operator instanceof IComplexOperation,
+ 'triggerHint' => $operator instanceof IComplexOperation ? $operator->getTriggerHint() : '',
];
}, $operators);
}