mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
1dc7dd646d
This will help us get type checking on the auth handler function
19 lines
638 B
TypeScript
19 lines
638 B
TypeScript
import { Express } from 'express';
|
|
import { 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,
|
|
});
|
|
});
|
|
}
|