diff options
author | Marko Pušnik <marko.pusnik@guru.si> | 2015-10-06 00:41:12 +0200 |
---|---|---|
committer | Marko Pušnik <marko.pusnik@guru.si> | 2015-10-06 00:41:12 +0200 |
commit | 17b999c2739006c2ec3b37ed64f119c9ad0b3338 (patch) | |
tree | 87a36d696bdcf46a612bf3aa90fe4d2758d74e6f /web | |
parent | 4586cb0e9d6cc862176314dcaa29edfea3c8eb4d (diff) |
change password
Diffstat (limited to 'web')
-rw-r--r-- | web/main.js | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/web/main.js b/web/main.js index 1a160e6..8d5446b 100644 --- a/web/main.js +++ b/web/main.js @@ -109,17 +109,18 @@ var guiHandlers = { // actions to use default handling should define truthy values that are not functions // (this is to filter out unnecessary traffic before it hits Python) - 'activity': true, - 'query': true, - 'python_exec': true, - 'python_push': true, - 'python_stop': true, - 'hint': true, - 'test': true, - 'get_problem': true, - 'settings': true, - 'load_problem': true, - 'end_problem': true + 'change_password': true, + 'activity': true, + 'query': true, + 'python_exec': true, + 'python_push': true, + 'python_stop': true, + 'hint': true, + 'test': true, + 'get_problem': true, + 'settings': true, + 'load_problem': true, + 'end_problem': true }; server.on('connection', function (socket) { |