FIX: respect logout_redirect setting on 'Log out all'

This commit is contained in:
Arpit Jalan 2019-07-17 11:57:12 +05:30
parent 4bbf341ab1
commit e4d743910d

View File

@ -228,7 +228,17 @@ export default Ember.Controller.extend(
type: "POST",
data: token ? { token_id: token.id } : {}
}
);
).then(() => {
if (!token) {
const redirect = this.siteSettings.logout_redirect;
if (Ember.isEmpty(redirect)) {
window.location.pathname = Discourse.getURL("/");
} else {
window.location.href = redirect;
}
}
})
.catch(popupAjaxError);
},
showToken(token) {