You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
612 B
JavaScript
29 lines
612 B
JavaScript
3 years ago
|
'use strict';
|
||
|
|
||
|
define('logout', ['hooks'], function (hooks) {
|
||
|
return function logout(redirect) {
|
||
|
redirect = redirect === undefined ? true : redirect;
|
||
|
hooks.fire('action:app.logout');
|
||
|
|
||
|
$.ajax(config.relative_path + '/logout', {
|
||
|
type: 'POST',
|
||
|
headers: {
|
||
|
'x-csrf-token': config.csrf_token,
|
||
|
},
|
||
|
beforeSend: function () {
|
||
|
app.flags._logout = true;
|
||
|
},
|
||
|
success: function (data) {
|
||
|
hooks.fire('action:app.loggedOut', data);
|
||
|
if (redirect) {
|
||
|
if (data.next) {
|
||
|
window.location.href = data.next;
|
||
|
} else {
|
||
|
window.location.reload();
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
});
|
||
|
};
|
||
|
});
|