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.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/server/lib/external-backends/backends/another-backend.js b/server/lib/external-backends/backends/another-backend.js
deleted file mode 100644
index 0d60259..0000000
--- a/server/lib/external-backends/backends/another-backend.js
+++ /dev/null
@@ -1,15 +0,0 @@
-/* global __appdir */
-const path = require('path')
-const ExternalBackends = require(path.join(__appdir, 'lib', 'external-backends'))
-
-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 }]
- }
-
- getSyncTypes () {
- return ['THERE', 'ARE', 'NO', 'SYNC', 'TYPES']
- }
-}
-
-module.exports = AnotherBackend