mirror of
https://github.com/Unleash/unleash.git
synced 2024-10-28 19:06:12 +01:00
53354224fc
Upgrades biome to 1.6.1, and updates husky pre-commit hook. Most changes here are making type imports explicit.
19 lines
648 B
TypeScript
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,
|
|
});
|
|
});
|
|
}
|