diff options
author | Julius Härtl <jus@bitgrid.net> | 2019-11-19 09:31:46 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2019-11-26 22:00:03 +0100 |
commit | ce6aed8667eb7c828a72246ee930324cae61084b (patch) | |
tree | 0db488942218de48103cb340e83da81ba75326c3 /apps/workflowengine | |
parent | 77cb7bfb9b3cbbdef92ee32fbd5a6518f5129888 (diff) | |
download | nextcloud-server-ce6aed8667eb7c828a72246ee930324cae61084b.tar.gz nextcloud-server-ce6aed8667eb7c828a72246ee930324cae61084b.zip |
Add hint about developer docs
Signed-off-by: Julius Härtl <jus@bitgrid.net>
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" |