diff --git a/supertokens/accountlinkingRecipeImplementation.go b/supertokens/accountlinkingRecipeImplementation.go index 939af132..a2318efc 100644 --- a/supertokens/accountlinkingRecipeImplementation.go +++ b/supertokens/accountlinkingRecipeImplementation.go @@ -91,9 +91,15 @@ func makeRecipeImplementation(querier Querier) AccountLinkingRecipeInterface { return &result, nil } + canCreatePrimaryUser := func(recipeUserId RecipeUserID, userContext UserContext) (CanCreatePrimaryUserResponse, error) { + // TODO:.. + return CanCreatePrimaryUserResponse{}, nil + } + // TODO:... return AccountLinkingRecipeInterface{ GetUsersWithSearchParams: &getUsers, GetUser: &getUser, + CanCreatePrimaryUser: &canCreatePrimaryUser, } }