1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-28 19:06:12 +01:00
unleash.unleash/src/lib/default-custom-auth-deny-all.ts
Christopher Kolstad 53354224fc
chore: Bump biome and configure husky (#6589)
Upgrades biome to 1.6.1, and updates husky pre-commit hook.

Most changes here are making type imports explicit.
2024-03-18 13:58:05 +01:00

19 lines
648 B
TypeScript

import type { Express } from 'express';
import type { IUnleashConfig } from './types/option';
const customAuthWarning =
'You have to configure a custom authentication middleware. Read https://docs.getunleash.io/docs/reference/deploy/configuring-unleash for more details';
export function defaultCustomAuthDenyAll(
app: Express,
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,
});
});
}