added svcapi ui and camunda code
[it/otf.git] / otf-frontend / server / src / feathers / services / index.js
diff --git a/otf-frontend/server/src/feathers/services/index.js b/otf-frontend/server/src/feathers/services/index.js
new file mode 100644 (file)
index 0000000..cccf259
--- /dev/null
@@ -0,0 +1,57 @@
+/*  Copyright (c) 2019 AT&T Intellectual Property.                             #\r
+#                                                                              #\r
+#   Licensed under the Apache License, Version 2.0 (the "License");            #\r
+#   you may not use this file except in compliance with the License.           #\r
+#   You may obtain a copy of the License at                                    #\r
+#                                                                              #\r
+#       http://www.apache.org/licenses/LICENSE-2.0                             #\r
+#                                                                              #\r
+#   Unless required by applicable law or agreed to in writing, software        #\r
+#   distributed under the License is distributed on an "AS IS" BASIS,          #\r
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #\r
+#   See the License for the specific language governing permissions and        #\r
+#   limitations under the License.                                             #\r
+##############################################################################*/\r
+\r
+\r
+const users = require('./users/users.service.js');\r
+const groups = require('./groups/groups.service.js');\r
+const testHeads = require('./test-heads/test-heads.service.js');\r
+const testInstances = require('./test-instances/test-instances.service.js');\r
+const testExecutions = require('./test-executions/test-executions.service.js');\r
+const testDefinitions = require('./test-definitions/test-definitions.service.js');\r
+const jobs = require('./jobs/jobs.service.js');\r
+const health = require('./health/health.service.js');\r
+const bpmnUpload = require('./bpmn-upload/bpmn-upload.service.js');\r
+const bpmnValidate = require('./bpmn-validate/bpmn-validate.service.js');\r
+const testExecutionStatus = require('./test-execution-status/test-execution-status.service.js');\r
+const testExecutionController = require('../../agenda/controllers/test-execution-controller');\r
+const mailer = require('./mailer/mailer.service.js');\r
+const authManagement = require('./auth-management/auth-management.service.js');\r
+const feedback = require('./feedback/feedback.service.js');\r
+const fileTransfer = require('./file-transfer/file-transfer.service.js');\r
+const files = require('./files/files.service.js');\r
+const execute = require('./execute/execute.service.js');\r
+const messages = require('./messages/messages.service')\r
+\r
+module.exports = function (app) {\r
+       app.configure(users);\r
+       app.configure(files);\r
+       app.configure(fileTransfer)\r
+       app.configure(groups);\r
+       app.configure(testHeads);\r
+       app.configure(testInstances);\r
+       app.configure(testExecutions);\r
+       app.configure(testDefinitions);\r
+       app.configure(execute);\r
+       app.configure(messages);\r
+       app.configure(jobs);\r
+       app.configure(health);\r
+       app.configure(bpmnUpload);\r
+       app.configure(bpmnValidate);\r
+       app.configure(testExecutionStatus);\r
+       app.configure(testExecutionController);\r
+       app.configure(mailer);\r
+       app.configure(authManagement);\r
+       app.configure(feedback);\r
+};\r