1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 19:42:01 +02:00

VNC authentication works, although there is no UI for adding passwords

yet. Direct database manipulation is required for now.
This commit is contained in:
Simo Kinnunen 2015-10-13 03:14:18 +09:00
parent a902c66131
commit 5b5520b705
8 changed files with 332 additions and 32 deletions

View file

@ -14,6 +14,15 @@ module.exports = {
}
}
}
, vncauth: {
primaryKey: 'password'
, indexes: {
response: null
, responsePerDevice: function(row) {
return [row('response'), row('deviceId')]
}
}
}
, devices: {
primaryKey: 'serial'
, indexes: {