1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/src/lib/default-custom-auth-deny-all.ts
Christopher Kolstad bbb714bf5f
fix: default custom auth hook now denies all requests to api endpoints (#811)
* fix: default custom auth hook now denies all requests to api endpoints
* fix: add link to documentation in customAuth error message
2021-04-29 15:18:58 +02:00

19 lines
671 B
TypeScript

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,
});
});
}