blob: 77e3f514d8219f655210f7c7adcff22d528ecd5b [file] [log] [blame]
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()
}