Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2019-11-22 14:57:51 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2019-12-13 18:04:50 +0300
commitc6baf40fa1ca81f5dcd8ad5ae4ee5500de63a9e4 (patch)
tree760d7662ecaa1ae9890990ba94f3cf91059ee100 /src/flow.js
parent8e81d703a2fc80165f84f7f8e2d477fe0e2495b9 (diff)
add flow operation, frontend part
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'src/flow.js')
-rw-r--r--src/flow.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/flow.js b/src/flow.js
new file mode 100644
index 000000000..ac447ee27
--- /dev/null
+++ b/src/flow.js
@@ -0,0 +1,8 @@
+import PostToConversation from './PostToConversation'
+
+window.OCA.WorkflowEngine.registerOperator({
+ id: 'OCA\\Talk\\Flow\\Operation',
+ color: 'tomato',
+ operation: '',
+ options: PostToConversation,
+})