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.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/external-backends/backends/another-backend.js b/server/lib/external-backends/backends/another-backend.js
index 90b8f8b..8044f84 100644
--- a/server/lib/external-backends/backends/another-backend.js
+++ b/server/lib/external-backends/backends/another-backend.js
@@ -5,7 +5,7 @@ class AnotherBackend extends ExternalBackends {
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 () {
+ async checkConnection (backend) {
return { success: true }
}
}