thelounge/client/js/auth.js

12 lines
182 B
JavaScript
Raw Normal View History

"use strict";
2019-11-16 18:24:03 +01:00
import storage from "./localStorage";
import location from "./location";
2019-11-16 18:24:03 +01:00
export default class Auth {
static signout() {
2019-11-16 18:24:03 +01:00
storage.clear();
location.reload();
}
2019-11-16 18:24:03 +01:00
}