1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

Update basic-auth-hook.js

This commit is contained in:
Ivar Conradi Østhus 2018-01-23 08:56:04 +01:00
parent 68e73da236
commit f5f8cde16b

View File

@ -16,10 +16,7 @@ function basicAuthentication(app) {
return res
.status('401')
.set({ 'WWW-Authenticate': 'Basic realm="example"' })
.send({
message: 'You must be authenticated to use Unleash',
path: '/custom/login',
});
.send('access denied');
}
});