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/socket-events/sign_out.js

9 lines
133 B
JavaScript
Raw Permalink Normal View History

"use strict";
import socket from "../socket";
import Auth from "../auth";
socket.on("sign-out", function () {
Auth.signout();
});