aboutsummaryrefslogtreecommitdiffstats
path: root/apps/workflowengine/src/components/Checks/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/workflowengine/src/components/Checks/index.js')
-rw-r--r--apps/workflowengine/src/components/Checks/index.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/workflowengine/src/components/Checks/index.js b/apps/workflowengine/src/components/Checks/index.js
new file mode 100644
index 00000000000..fc52f95f78a
--- /dev/null
+++ b/apps/workflowengine/src/components/Checks/index.js
@@ -0,0 +1,9 @@
+/**
+ * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
+import FileChecks from './file.js'
+import RequestChecks from './request.js'
+
+export default [...FileChecks, ...RequestChecks]