mirror of
				https://git.coolaj86.com/coolaj86/telebit.js.git
				synced 2025-11-04 02:32:47 +00:00 
			
		
		
		
	update grant message
This commit is contained in:
		
							parent
							
								
									33063d3efe
								
							
						
					
					
						commit
						182c4d8888
					
				
							
								
								
									
										16
									
								
								remote.js
									
									
									
									
									
								
							
							
						
						
									
										16
									
								
								remote.js
									
									
									
									
									
								
							@ -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'));
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user