1
0
Fork 0
mirror of synced 2024-10-01 17:47:46 +13:00

Adding use of the tenancy ID.

This commit is contained in:
mike12345567 2021-07-23 17:41:00 +01:00
parent 82e43e0008
commit be6561e93d

View file

@ -75,11 +75,15 @@ module.exports = (noAuthPatterns = [], opts) => {
}
}
const apiKey = ctx.request.headers[Headers.API_KEY]
const tenantId = ctx.request.headers[Headers.TENANT_ID]
// this is an internal request, no user made it
if (!authenticated && apiKey && apiKey === env.INTERNAL_API_KEY) {
authenticated = true
internal = true
}
if (!user && tenantId) {
user = { tenantId }
}
// be explicit
if (authenticated !== true) {
authenticated = false