Clear useless code

This commit is contained in:
Louis Lam 2022-03-24 18:03:31 +08:00
parent d32ba7cadd
commit 71af08189e

View File

@ -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) { exports.basicAuth = async function (req, res, next) {
const middleware = basicAuth({ const middleware = basicAuth({
authorizer: myAuthorizer, authorizer: myAuthorizer,