update grant message

This commit is contained in:
AJ ONeal 2018-06-01 03:13:04 -06:00
parent af9a7c5812
commit 0aab6c8739
1 changed files with 16 additions and 0 deletions

View File

@ -206,6 +206,17 @@ function run(state) {
});
}
function displayGrants(grants) {
// TODO sortingHat.print();
console.log("");
console.log("Connect to your device by any of the following means:");
console.log("");
grants.forEach(function (arr) {
console.log('\t' + arr[0] + '://' + arr[1] + (arr[2] ? (':' + arr[2]) : ''));
});
console.log("");
}
var connCallback;
var packerHandlers = {
@ -252,6 +263,11 @@ function run(state) {
err = { message: 'unknown command "'+cmd[1]+'"', code: 'E_UNKNOWN_COMMAND' };
}
if (cmd[1] === 'grant') {
displayGrants(cmd[2]);
return;
}
wsHandlers.sendMessage(Packer.pack(null, [-cmd[0], err], 'control'));
}