()
| 108 | } |
| 109 | |
| 110 | function removeUser() { |
| 111 | mgr.removeUser().then(function() { |
| 112 | log("user removed"); |
| 113 | }).catch(function(err) { |
| 114 | console.error(err); |
| 115 | log(err); |
| 116 | }); |
| 117 | } |
| 118 | |
| 119 | function querySessionStatus() { |
| 120 | mgr.querySessionStatus().then(function(status) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…