summaryrefslogtreecommitdiffstats
path: root/server/lib/external-backends/backends/another-backend.js
blob: 5efc185ecffc605af21b31ab110ee1f6dd4564b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
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 }]
  }
}

module.exports = AnotherBackend