1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-04 00:18:01 +01:00

fix: typo in message in simple-authentication.js (#707)

`lib/middleware/simple-authentication.js`
This commit is contained in:
Alex Borys 2021-02-04 13:21:08 +02:00 committed by GitHub
parent 3a983d291c
commit 806ecf7385
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@ function unsecureAuthentication(basePath = '', app) {
path: `${basePath}/api/admin/login`, path: `${basePath}/api/admin/login`,
type: 'unsecure', type: 'unsecure',
message: message:
'You have to indentify yourself in order to use Unleash.', 'You have to identify yourself in order to use Unleash.',
}), }),
) )
.end(); .end();