fix(backend): remove a bad thing that really doesn't work

This commit is contained in:
KernelDeimos 2024-06-09 14:21:02 -04:00
parent b85cb50ea2
commit 8d22276f13

View File

@ -394,10 +394,6 @@ class WebServerService extends BaseService {
app.options('/*', (_, res) => {
return res.sendStatus(200);
});
this.router_user = express.Router();
this.router_user.use(auth2);
app.use(this.router_user);
}
_register_commands (commands) {