diff options
author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-03-19 16:06:07 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-04-15 15:00:07 -0300 |
commit | 6444c6c9c758b1f4bd291d5e4e5455b84345ec9b (patch) | |
tree | 08d2289107f0c4759e2b0ded3104bec17384441b /src/leap/bitmask/crypto/srpregister.py | |
parent | c8137a8829668270d4391c7909b39c56b64f604c (diff) |
Move SRPAuth to the backend.
* Move methods from SRPAuth to backend: login, logout, change_password.
* Add backend section to hold temporary hack code, needed in the process
of splitting frontend and backend.
* Replace pyside signals with Signaler signals.
* Move all the signaling and thread launching in SRPAuth inside of
__impl.
* Move defer handling code (callbacks/errbacks) to the backend and left
only signal handling in the GUI.
[Closes #5347]
Diffstat (limited to 'src/leap/bitmask/crypto/srpregister.py')
-rw-r--r-- | src/leap/bitmask/crypto/srpregister.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/leap/bitmask/crypto/srpregister.py b/src/leap/bitmask/crypto/srpregister.py index 4c52db42..f03dc469 100644 --- a/src/leap/bitmask/crypto/srpregister.py +++ b/src/leap/bitmask/crypto/srpregister.py @@ -46,8 +46,6 @@ class SRPRegister(QtCore.QObject): STATUS_TAKEN = 422 STATUS_ERROR = -999 # Custom error status - registration_finished = QtCore.Signal(bool, object) - def __init__(self, signaler=None, provider_config=None, register_path="users"): """ |