diff --git a/ogcp/templates/scopes.html b/ogcp/templates/scopes.html index 7abba81..4603f04 100644 --- a/ogcp/templates/scopes.html +++ b/ogcp/templates/scopes.html @@ -33,6 +33,8 @@
diff --git a/ogcp/views.py b/ogcp/views.py index 4874ffe..9d44b55 100644 --- a/ogcp/views.py +++ b/ogcp/views.py @@ -48,3 +48,10 @@ def action_poweroff(): payload = {'clients': list(ips)} g.server.post('/poweroff', payload) return make_response("200 OK", 200) + +@app.route('/action/reboot', methods=['POST']) +def action_reboot(): + ips = parse_ips(request.form.to_dict()) + payload = {'clients': list(ips)} + g.server.post('/reboot', payload) + return make_response("200 OK", 200)