summaryrefslogtreecommitdiffstats
path: root/server/lib/external-backends/backends/another-backend.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/lib/external-backends/backends/another-backend.js')
-rw-r--r--server/lib/external-backends/backends/another-backend.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/server/lib/external-backends/backends/another-backend.js b/server/lib/external-backends/backends/another-backend.js
index eb329ae..90b8f8b 100644
--- a/server/lib/external-backends/backends/another-backend.js
+++ b/server/lib/external-backends/backends/another-backend.js
@@ -4,6 +4,10 @@ class AnotherBackend extends ExternalBackends {
getCredentials () {
return [{ type: 'text', id: 1, name: 'text 1' }, { type: 'text', id: 2, name: 'text 2' }, { type: 'password', id: 3, name: 'password 1', show: false }, { type: 'password', id: 4, name: 'password 2', show: true }, { type: 'password', id: 5, name: 'password 3', show: false }]
}
+
+ async checkConnection () {
+ return { success: true }
+ }
}
module.exports = AnotherBackend