account service: readd wscount endpoint

This commit is contained in:
Adam
2018-12-23 10:26:52 -05:00
parent 3d9c962c6f
commit dc5f9fe264

View File

@@ -268,4 +268,10 @@ public class AccountService
{
auth.handle(request, response);
}
@RequestMapping("/wscount")
public int wscount()
{
return SessionManager.getCount();
}
}