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.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/server/lib/external-backends/backends/another-backend.js b/server/lib/external-backends/backends/another-backend.js
index 9458e1e..5efc185 100644
--- a/server/lib/external-backends/backends/another-backend.js
+++ b/server/lib/external-backends/backends/another-backend.js
@@ -1,9 +1,9 @@
-var ExternalBackends = require('../external-backends.js');
+var ExternalBackends = require('../external-backends.js')
class AnotherBackend extends ExternalBackends {
- getCredentials() {
- return [{ type: "text", name: "text 1" }, { type: "text", name: "text 2" }, { type: "password", name: "password 1", show: false}, { type: "password", name: "password 2", show: true}, { type: "password", name: "password 3", show: false}];
- }
+ getCredentials () {
+ return [{ type: 'text', name: 'text 1' }, { type: 'text', name: 'text 2' }, { type: 'password', name: 'password 1', show: false }, { type: 'password', name: 'password 2', show: true }, { type: 'password', name: 'password 3', show: false }]
+ }
}
-module.exports = AnotherBackend; \ No newline at end of file
+module.exports = AnotherBackend