Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 94x 94x 1x 1x 1x 1x | import { IUnleashConfig } from './types/option';
 
const customAuthWarning =
    'You have to configure a custom authentication middleware. Read https://docs.getunleash.io/docs/deploy/configuring_unleash for more details';
 
export function defaultCustomAuthDenyAll(
    // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
    app: any,
    config: IUnleashConfig,
): void {
    const logger = config.getLogger('src/lib/app/customAuthHandler');
    app.use(`${config.server.baseUriPath}/api`, async (req, res) => {
        logger.error(customAuthWarning);
        res.status(401).send({
            error: customAuthWarning,
        });
    });
}
  |