diff options
Diffstat (limited to 'apps/workflowengine')
-rw-r--r-- | apps/workflowengine/src/components/Workflow.vue | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/workflowengine/src/components/Workflow.vue b/apps/workflowengine/src/components/Workflow.vue index 5979dfd5caf..fa352ced9fa 100644 --- a/apps/workflowengine/src/components/Workflow.vue +++ b/apps/workflowengine/src/components/Workflow.vue @@ -3,6 +3,10 @@ <div class="section"> <h2>{{ t('workflowengine', 'Available actions') }}</h2> + <p v-if="scope === 0" class="settings-hint"> + <a href="https://nextcloud.com/developer/">{{ t('workflowengine', 'For details on how to write your own actions, checkout the development documentation') }}</a> + </p> + <transition-group name="slide" tag="div" class="actions"> <Operation v-for="operation in getMainOperations" :key="operation.id" |