logout-everywhere from the userAdmin menu
This commit is contained in:
parent
99f04c3d6f
commit
9c4693365a
@ -3321,6 +3321,13 @@ define([
|
|||||||
options.push({ tag: 'hr' });
|
options.push({ tag: 'hr' });
|
||||||
// Add login or logout button depending on the current status
|
// Add login or logout button depending on the current status
|
||||||
if (accountName) {
|
if (accountName) {
|
||||||
|
options.push({
|
||||||
|
tag: 'a',
|
||||||
|
attributes: {
|
||||||
|
'class': 'cp-toolbar-menu-logout-everywhere fa fa-plug',
|
||||||
|
},
|
||||||
|
content: h('span', "CLOSE REMOTE SESSIONS") // XXX Messages.settings_logoutEverywhereTitle)
|
||||||
|
});
|
||||||
options.push({
|
options.push({
|
||||||
tag: 'a',
|
tag: 'a',
|
||||||
attributes: {'class': 'cp-toolbar-menu-logout fa fa-sign-out'},
|
attributes: {'class': 'cp-toolbar-menu-logout fa fa-sign-out'},
|
||||||
@ -3407,6 +3414,10 @@ define([
|
|||||||
window.parent.location = origin+'/';
|
window.parent.location = origin+'/';
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$userAdmin.find('a.cp-toolbar-menu-logout-everywhere').click(function () {
|
||||||
|
Common.getSframeChannel().query('Q_LOGOUT_EVERYWHERE', null, function () { });
|
||||||
|
});
|
||||||
$userAdmin.find('a.cp-toolbar-menu-settings').click(function () {
|
$userAdmin.find('a.cp-toolbar-menu-settings').click(function () {
|
||||||
if (padType) {
|
if (padType) {
|
||||||
window.open(origin+'/settings/');
|
window.open(origin+'/settings/');
|
||||||
|
|||||||
@ -783,6 +783,10 @@ define([
|
|||||||
Utils.LocalStore.logout(cb);
|
Utils.LocalStore.logout(cb);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
sframeChan.on('Q_LOGOUT_EVERYWHERE', function (data, cb) {
|
||||||
|
Cryptpad.logoutFromAll(cb);
|
||||||
|
});
|
||||||
|
|
||||||
sframeChan.on('EV_NOTIFY', function (data) {
|
sframeChan.on('EV_NOTIFY', function (data) {
|
||||||
Notifier.notify(data);
|
Notifier.notify(data);
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user