1
0
Fork 0
mirror of synced 2024-10-03 02:27:06 +13:00

fix test failure

This commit is contained in:
Martin McKeaveney 2021-09-06 16:18:50 +01:00
parent a0e0843363
commit c1c4fe968f

View file

@ -5,13 +5,13 @@ const { buildMatcherRegex, matches } = require("./matchers")
module.exports = (
allowQueryStringPatterns,
noTenancyPatterns,
{ noTenancyRequired }
opts = {}
) => {
const allowQsOptions = buildMatcherRegex(allowQueryStringPatterns)
const noTenancyOptions = buildMatcherRegex(noTenancyPatterns)
return ContextFactory.getMiddleware(ctx => {
const allowNoTenant = noTenancyRequired || !!matches(ctx, noTenancyOptions)
const allowNoTenant = opts.noTenancyRequired || !!matches(ctx, noTenancyOptions)
const allowQs = !!matches(ctx, allowQsOptions)
setTenantId(ctx, { allowQs, allowNoTenant })
})