mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-21 06:45:24 -06:00
pep8
This commit is contained in:
parent
68e522922e
commit
a3da06a0a6
2 changed files with 8 additions and 2 deletions
|
|
@ -211,8 +211,7 @@ class Live(Resource):
|
|||
not api.bui.acl.is_client_allowed(
|
||||
current_user.get_id(),
|
||||
c,
|
||||
k)
|
||||
):
|
||||
k)):
|
||||
continue
|
||||
s = {}
|
||||
s['client'] = c
|
||||
|
|
|
|||
|
|
@ -100,4 +100,11 @@ var url = '{{ url_for("api.live") }}';
|
|||
var app = angular.module('MainApp', ['ngSanitize']);
|
||||
|
||||
app.controller('LiveCtrl', function($scope, $http, $timeout) {
|
||||
$scope.load = function() {
|
||||
$http.get(url)
|
||||
.success(function(data, status, headers, config) {
|
||||
})
|
||||
.error(function(data, status, headers, config) {
|
||||
});
|
||||
};
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue