mirror of
https://github.com/openstf/stf
synced 2025-10-05 02:29:26 +02:00
14 lines
312 B
JavaScript
14 lines
312 B
JavaScript
module.exports = function AdbKeysCtrl($scope, $http, UserService) {
|
|
$scope.adbKeys = []
|
|
|
|
function updateKeys() {
|
|
$scope.adbKeys = UserService.getAdbKeys()
|
|
}
|
|
|
|
$scope.removeKey = function (key) {
|
|
UserService.removeAdbKey(key)
|
|
}
|
|
|
|
$scope.$on('user.keys.adb.updated', updateKeys)
|
|
updateKeys()
|
|
}
|