fix: setMetadata in saml and pre access token triggers (#6398)

This commit is contained in:
Livio Spring
2023-08-21 14:21:45 +02:00
committed by GitHub
parent e034b37068
commit 84faf98bc2
2 changed files with 4 additions and 2 deletions

View File

@@ -266,7 +266,7 @@ func (p *Storage) getCustomAttributes(ctx context.Context, user *query.User, use
}),
),
actions.SetFields("user",
actions.SetFields("setMetadata", func(call goja.FunctionCall) {
actions.SetFields("setMetadata", func(call goja.FunctionCall) goja.Value {
if len(call.Arguments) != 2 {
panic("exactly 2 (key, value) arguments expected")
}
@@ -287,6 +287,7 @@ func (p *Storage) getCustomAttributes(ctx context.Context, user *query.User, use
logging.WithError(err).Info("unable to set md in action")
panic(err)
}
return nil
}),
),
),