From e2f711a32e69fb01aa08f5b0ca71a59d13d856e7 Mon Sep 17 00:00:00 2001 From: Edward Viaene Date: Tue, 15 Oct 2024 14:13:15 -0500 Subject: [PATCH] user hooks --- rest/context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest/context.go b/rest/context.go index da893cb..eba3878 100644 --- a/rest/context.go +++ b/rest/context.go @@ -25,7 +25,7 @@ func newContext(storage storage.Iface, serverType string) (*Context, error) { if err != nil { return &Context{}, fmt.Errorf("userstore initialization error: %s", err) } - return newContextWithParams(storage, serverType, userStore, scim.New(storage, userStore, "", nil, nil), 100, "", map[string]AppClient{}) + return newContextWithParams(storage, serverType, userStore, scim.New(storage, userStore, ""), 100, "", map[string]AppClient{}) } func newContextWithParams(storage storage.Iface, serverType string, userStore *users.UserStore, scimInstance scim.Iface, licenseUserCount int, cloudType string, apps map[string]AppClient) (*Context, error) {