From b3fcaf8b98f629f1253932b6370e2cf1fb0a3f4b Mon Sep 17 00:00:00 2001 From: Tom Broughton Date: Tue, 24 Oct 2023 22:45:19 +0100 Subject: [PATCH] removed unused function to handleForbidden from ipfilter --- app/server/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/server/app.js b/app/server/app.js index 1b38c2a..9a597cb 100644 --- a/app/server/app.js +++ b/app/server/app.js @@ -22,7 +22,7 @@ const ipfilter = require('express-ipfilter').IpFilter const appSocket = require('./socket'); const { setDefaultCredentials, basicAuth } = require('./util'); const { webssh2debug } = require('./logging'); -const { reauth, connect, notfound, handleForbidden, handleErrors } = require('./routes'); +const { reauth, connect, notfound, handleErrors } = require('./routes'); setDefaultCredentials(config.user);