fix app js logout request url

This commit is contained in:
yuri
2019-07-01 12:45:50 +03:00
parent f624bdef5c
commit 72ef137dbe

View File

@@ -526,7 +526,8 @@ define(
this.unsetCookieAuth();
xhr = new XMLHttpRequest;
xhr.open('GET', this.url + '/');
xhr.open('GET', this.basePath + this.url + '/');
xhr.setRequestHeader('Authorization', 'Basic ' + Base64.encode('**logout:logout'));
xhr.send('');
xhr.abort();