Update content of files

This commit is contained in:
GitHub Action 2024-06-02 13:43:02 +00:00
parent 741162ae99
commit 6ff50e3c7b

View file

@ -1463,13 +1463,14 @@ var Random = {
var LoginCodes = { var LoginCodes = {
init: function() { init: function() {
Aj.onLoad(function(state) { Aj.onLoad(function(state) {
$('.js-toggle-receive').on('change', LoginCodes.eToggleReceive); var cont = Aj.ajContainer;
$(cont).on('change.curPage', '.js-toggle-receive', LoginCodes.eToggleReceive);
$(cont).on('click.curPage', '.js-terminate-sessions-btn', LoginCodes.eTerminateSessions);
state.needUpdate = true; state.needUpdate = true;
state.updLastReq = +Date.now(); state.updLastReq = +Date.now();
state.updStateTo = setTimeout(LoginCodes.updateState, Main.UPDATE_PERIOD); state.updStateTo = setTimeout(LoginCodes.updateState, Main.UPDATE_PERIOD);
}); });
Aj.onUnload(function(state) { Aj.onUnload(function(state) {
$('.js-toggle-receive').off('change', LoginCodes.eToggleReceive);
clearTimeout(state.updStateTo); clearTimeout(state.updStateTo);
state.needUpdate = false; state.needUpdate = false;
}); });
@ -1508,6 +1509,29 @@ var LoginCodes = {
number: Aj.state.number, number: Aj.state.number,
can_receive: can_receive ? 1 : 0 can_receive: can_receive ? 1 : 0
}); });
},
eTerminateSessions: function(e) {
e.preventDefault();
LoginCodes.terminateSessions();
},
terminateSessions: function(terminate_hash) {
Aj.apiRequest('terminatePhoneSessions', {
number: Aj.state.number,
terminate_hash: terminate_hash
}, function(result) {
if (result.error) {
return showAlert(result.error);
} else if (result.terminate_hash) {
showConfirm(result.confirm_message, function() {
LoginCodes.terminateSessions(result.terminate_hash);
}, result.confirm_button);
} else {
$('.js-terminate-sessions-wrap').hide();
if (result.msg) {
showAlert(result.msg);
}
}
});
} }
}; };