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:
parent
a902c66131
commit
5b5520b705
8 changed files with 332 additions and 32 deletions
|
@ -14,6 +14,15 @@ module.exports = {
|
|||
}
|
||||
}
|
||||
}
|
||||
, vncauth: {
|
||||
primaryKey: 'password'
|
||||
, indexes: {
|
||||
response: null
|
||||
, responsePerDevice: function(row) {
|
||||
return [row('response'), row('deviceId')]
|
||||
}
|
||||
}
|
||||
}
|
||||
, devices: {
|
||||
primaryKey: 'serial'
|
||||
, indexes: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue