mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 16:13:24 +02:00
16 lines
334 B
JavaScript
16 lines
334 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()
|
|
}
|