core: fix PropertyMapping context not being available in request context

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Jens Langhammer
2023-12-23 02:55:49 +01:00
parent 4a8c0f7f80
commit d535a82372
2 changed files with 5 additions and 1 deletions

View File

@ -44,6 +44,7 @@ class PropertyMappingEvaluator(BaseEvaluator):
if request:
req.http_request = request
self._context["request"] = req
req.context.update(**kwargs)
self._context.update(**kwargs)
self.dry_run = dry_run