diff --git a/server/auth.js b/server/auth.js index 5d3597cc..1196f94d 100644 --- a/server/auth.js +++ b/server/auth.js @@ -47,13 +47,6 @@ function myAuthorizer(username, password, callback) { }); } -/** - * If disabled auth, it does not call `next`. - */ -exports.checkBasicAuth = async (req, res, next) => { - -}; - exports.basicAuth = async function (req, res, next) { const middleware = basicAuth({ authorizer: myAuthorizer,