hardlounge/client/js/socket-events/sign_out.js

9 lines
132 B
JavaScript
Raw Normal View History

"use strict";
2019-11-16 12:24:03 -05:00
import socket from "../socket";
import Auth from "../auth";
socket.on("sign-out", function() {
Auth.signout();
});