summaryrefslogtreecommitdiffstats
path: root/server/lib/external-backends/backends/template-backend.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/lib/external-backends/backends/template-backend.js')
-rw-r--r--server/lib/external-backends/backends/template-backend.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/external-backends/backends/template-backend.js b/server/lib/external-backends/backends/template-backend.js
index 9ce799d..19f1d76 100644
--- a/server/lib/external-backends/backends/template-backend.js
+++ b/server/lib/external-backends/backends/template-backend.js
@@ -2,7 +2,7 @@ var ExternalBackends = require('../external-backends.js')
class TemplateBackend extends ExternalBackends {
getCredentials () {
- return [{ type: 'text', name: 'text test' }, { type: 'password', name: 'password test', show: true }, { type: 'password', name: 'password test nr2', show: false }, { type: 'switch', name: 'bool test', value: false }, { type: 'select', name: 'selection test', items: ['wasd', 'asdf', 'qwertz'] }]
+ return [{ type: 'text', id: 1, name: 'text test', icon: 'bug_report' }, { type: 'password', id: 2, name: 'password test', show: true }, { type: 'password', id: 3, name: 'password test nr2', show: false }, { type: 'switch', id: 4, name: 'bool test', value: false }, { type: 'select', id: 5, name: 'selection test', items: ['wasd', 'asdf', 'qwertz'] }]
}
}