mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-02-25 14:43:06 +01:00
12 lines
243 B
JavaScript
12 lines
243 B
JavaScript
import initMatrix from '../initMatrix';
|
|
|
|
function logout() {
|
|
const mx = initMatrix.matrixClient;
|
|
mx.logout().then(() => {
|
|
mx.clearStores();
|
|
window.localStorage.clear();
|
|
window.location.reload();
|
|
});
|
|
}
|
|
|
|
export default logout;
|