1
0
mirror of https://github.com/flarum/core.git synced 2025-05-06 15:35:38 +02:00

Fix logout redirection

This commit is contained in:
Toby Zerner 2015-05-04 10:30:38 +09:30
parent f31973981c
commit 95c192c380

View File

@ -32,7 +32,7 @@ export default class Session extends mixin(class {}, evented) {
}
logout() {
window.location = app.config.baseURL+'/logout';
window.location = app.config['base_url']+'/logout';
}
authorize(xhr) {