This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/client/js/auth.js

12 lines
182 B
JavaScript
Raw Normal View History

"use strict";
import storage from "./localStorage";
import location from "./location";
export default class Auth {
static signout() {
storage.clear();
location.reload();
}
}