mirror of
https://github.com/thelounge/thelounge
synced 2024-11-22 20:13:07 +00:00
8 lines
132 B
JavaScript
8 lines
132 B
JavaScript
"use strict";
|
|
|
|
import socket from "../socket";
|
|
import Auth from "../auth";
|
|
|
|
socket.on("sign-out", function() {
|
|
Auth.signout();
|
|
});
|